SignUpBloc constructor

SignUpBloc()

Implementation

SignUpBloc() : super(SignUpState.initial()) {
  on<SignUpEvent>((event, emit) {
    // TODO: implement event handler
  });
}