da82bd70
Key
feat: user_inform...
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
});
}
}
|