mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-11-01 18:07:44 +00:00
15 lines
396 B
Dart
15 lines
396 B
Dart
import 'package:flutter/foundation.dart';
|
|
|
|
abstract class WalletCreationState {}
|
|
|
|
class InitialWalletCreationState extends WalletCreationState {}
|
|
|
|
class WalletCreating extends WalletCreationState {}
|
|
|
|
class WalletCreatedSuccessfully extends WalletCreationState {}
|
|
|
|
class WalletCreationFailure extends WalletCreationState {
|
|
WalletCreationFailure({@required this.error});
|
|
|
|
final String error;
|
|
}
|