TF-1317 Update authentication account to store AccountId

This commit is contained in:
dab246
2023-01-04 19:00:53 +07:00
committed by Dat H. Pham
parent eadc0c4ddc
commit 6566372337
21 changed files with 193 additions and 71 deletions
@@ -0,0 +1,21 @@
import 'package:core/presentation/state/failure.dart';
import 'package:core/presentation/state/success.dart';
class UpdateAuthenticationAccountLoading extends LoadingState {}
class UpdateAuthenticationAccountSuccess extends UIState {
UpdateAuthenticationAccountSuccess();
@override
List<Object> get props => [];
}
class UpdateAuthenticationAccountFailure extends FeatureFailure {
final dynamic exception;
UpdateAuthenticationAccountFailure(this.exception);
@override
List<Object?> get props => [exception];
}