0583406e3b
(cherry picked from commit 2a5441c2ef4facf28e7e6e1678e89601d72259be)
14 lines
402 B
Dart
14 lines
402 B
Dart
|
|
import 'package:core/presentation/state/success.dart';
|
|
import 'package:jmap_dart_client/jmap/core/state.dart' as jmap;
|
|
|
|
abstract class UIActionState extends UIState {
|
|
|
|
final jmap.State? currentEmailState;
|
|
final jmap.State? currentMailboxState;
|
|
|
|
UIActionState(this.currentEmailState, this.currentMailboxState);
|
|
|
|
@override
|
|
List<Object?> get props => [currentEmailState, currentMailboxState];
|
|
} |