16 lines
281 B
Dart
16 lines
281 B
Dart
|
|
import 'package:core/core.dart';
|
|
|
|
class WebViewLoadingState extends UIState {
|
|
WebViewLoadingState();
|
|
|
|
@override
|
|
List<Object?> get props => [];
|
|
}
|
|
|
|
class WebViewLoadCompletedState extends UIState {
|
|
WebViewLoadCompletedState();
|
|
|
|
@override
|
|
List<Object?> get props => [];
|
|
} |