You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cake_wallet/lib/src/stores/wallet_restoration/wallet_restoration_state.dart

16 lines
418 B

import 'package:flutter/foundation.dart';
abstract class WalletRestorationState {}
class WalletRestorationStateInitial extends WalletRestorationState {}
class WalletIsRestoring extends WalletRestorationState {}
class WalletRestoredSuccessfully extends WalletRestorationState {}
class WalletRestorationFailure extends WalletRestorationState {
WalletRestorationFailure({@required this.error});
String error;
}