mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-09 22:57:21 +00:00
14 lines
317 B
Dart
14 lines
317 B
Dart
import 'package:bloc/bloc.dart';
|
|
import 'package:meta/meta.dart';
|
|
|
|
part 'routine_event.dart';
|
|
part 'routine_state.dart';
|
|
|
|
class RoutineBloc extends Bloc<RoutineEvent, RoutineState> {
|
|
RoutineBloc() : super(RoutineInitial()) {
|
|
on<RoutineEvent>((event, emit) {
|
|
// TODO: implement event handler
|
|
});
|
|
}
|
|
}
|