mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-10-31 17:37:41 +00:00
13 lines
No EOL
329 B
Dart
13 lines
No EOL
329 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;
|
|
} |