mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-17 17:57:36 +00:00
18 lines
No EOL
495 B
Dart
18 lines
No EOL
495 B
Dart
import 'package:flutter/foundation.dart';
|
|
|
|
abstract class SendViewModelState {}
|
|
|
|
class InitialSendViewModelState extends SendViewModelState {}
|
|
|
|
class TransactionIsCreating extends SendViewModelState {}
|
|
class TransactionCreatedSuccessfully extends SendViewModelState {}
|
|
|
|
class TransactionCommitting extends SendViewModelState {}
|
|
|
|
class TransactionCommitted extends SendViewModelState {}
|
|
|
|
class SendingFailed extends SendViewModelState {
|
|
SendingFailed({@required this.error});
|
|
|
|
String error;
|
|
} |