TF-838 Create UIActionState

This commit is contained in:
dab246
2022-08-16 10:26:43 +07:00
committed by Dat H. Pham
parent c22e630c12
commit 982c698dd2
@@ -0,0 +1,14 @@
import 'package:core/presentation/state/success.dart';
import 'package:jmap_dart_client/jmap/core/state.dart' as jmap;
class UIActionState extends UIState {
jmap.State? currentEmailState;
jmap.State? currentMailboxState;
UIActionState(this.currentEmailState, this.currentMailboxState);
@override
List<Object?> get props => [currentEmailState, currentMailboxState];
}