Files
Tanami_App/lib/features/otpVerification/bloc/otp_state.dart
2024-07-12 09:14:15 +05:30

20 lines
340 B
Dart

abstract class OTPState {}
class OTPInitial extends OTPState {}
class OTPLoading extends OTPState {}
class OTPLoaded extends OTPState {}
class OTPFailed extends OTPState {
final String failedmessage;
OTPFailed(this.failedmessage);
}
class OTPError extends OTPState {
final String errormessage;
OTPError(this.errormessage);
}