22b7d4da
Key
feat: user, api path
|
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_event.dart';
part 'user_state.dart';
class UserBloc extends Bloc<UserEvent, UserState> {
UserBloc() : super(UserInitial()) {
on<UserEvent>((event, emit) {
// TODO: implement event handler
});
}
}
|