mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
13 lines
294 B
Dart
13 lines
294 B
Dart
|
abstract class ExecutionState {}
|
||
|
|
||
|
class InitialExecutionState extends ExecutionState {}
|
||
|
|
||
|
class IsExecutingState extends ExecutionState {}
|
||
|
|
||
|
class ExecutedSuccessfullyState extends ExecutionState {}
|
||
|
|
||
|
class FailureState extends ExecutionState {
|
||
|
FailureState(this.error);
|
||
|
|
||
|
final String error;
|
||
|
}
|