mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-09 12:29:31 +00:00
29 lines
680 B
Dart
29 lines
680 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
abstract class IoniaCreateState {}
|
|
|
|
class IoniaCreateStateSuccess extends IoniaCreateState {}
|
|
|
|
class IoniaCreateStateLoading extends IoniaCreateState {}
|
|
|
|
class IoniaCreateStateFailure extends IoniaCreateState {
|
|
IoniaCreateStateFailure({@required this.error});
|
|
|
|
final String error;
|
|
}
|
|
|
|
abstract class IoniaOtpState {}
|
|
|
|
class IoniaOtpValidating extends IoniaOtpState {}
|
|
|
|
class IoniaOtpSuccess extends IoniaOtpState {}
|
|
|
|
class IoniaOtpSendDisabled extends IoniaOtpState {}
|
|
|
|
class IoniaOtpSendEnabled extends IoniaOtpState {}
|
|
|
|
class IoniaOtpFailure extends IoniaOtpState {
|
|
IoniaOtpFailure({@required this.error});
|
|
|
|
final String error;
|
|
}
|