user_information_bloc.dart 383 Bytes
import 'package:bloc/bloc.dart';
import 'package:meta/meta.dart';

part 'user_information_event.dart';
part 'user_information_state.dart';

class UserInformationBloc extends Bloc<UserInformationEvent, UserInformationState> {
  UserInformationBloc() : super(UserInformationInitial()) {
    on<UserInformationEvent>((event, emit) {
      // TODO: implement event handler
    });
  }
}