TF-439 Implement handle store device id
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
|
||||
import 'package:core/presentation/state/failure.dart';
|
||||
import 'package:core/presentation/state/success.dart';
|
||||
|
||||
class StoreDeviceIdLoading extends UIState {}
|
||||
|
||||
class StoreDeviceIdSuccess extends UIState {
|
||||
|
||||
StoreDeviceIdSuccess();
|
||||
|
||||
@override
|
||||
List<Object> get props => [];
|
||||
}
|
||||
|
||||
class StoreDeviceIdFailure extends FeatureFailure {
|
||||
final dynamic exception;
|
||||
|
||||
StoreDeviceIdFailure(this.exception);
|
||||
|
||||
@override
|
||||
List<Object> get props => [exception];
|
||||
}
|
||||
Reference in New Issue
Block a user