mirror of
https://github.com/SyncrowIOT/web.git
synced 2025-07-09 22:57:21 +00:00
14 lines
393 B
Dart
14 lines
393 B
Dart
import 'package:bloc/bloc.dart';
|
|
import 'package:equatable/equatable.dart';
|
|
|
|
part 'device_managment_event.dart';
|
|
part 'device_managment_state.dart';
|
|
|
|
class DeviceManagmentBloc extends Bloc<DeviceManagmentEvent, DeviceManagmentState> {
|
|
DeviceManagmentBloc() : super(DeviceManagmentInitial()) {
|
|
on<DeviceManagmentEvent>((event, emit) {
|
|
// TODO: implement event handler
|
|
});
|
|
}
|
|
}
|