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