Files
prosappco/lib/blocs/sign_up_bloc/sign_up_state.dart
T
2024-02-16 08:52:37 -05:00

17 lines
323 B
Dart

part of 'sign_up_bloc.dart';
abstract class SignUpState extends Equatable {
const SignUpState();
@override
List<Object> get props => [];
}
class SignUpInitial extends SignUpState {}
class SignUpSuccess extends SignUpState {}
class SignUpFailure extends SignUpState {}
class SignUpProcess extends SignUpState {}