push gatway devices

This commit is contained in:
ashrafzarkanisala
2024-08-26 21:23:32 +03:00
parent 2777dc1a5f
commit 191801d9a8
17 changed files with 424 additions and 22 deletions

View File

@ -0,0 +1,20 @@
part of 'gate_way_bloc.dart';
sealed class GateWayEvent extends Equatable {
const GateWayEvent();
@override
List<Object> get props => [];
}
class GateWayLoading extends GateWayEvent {}
class GateWayFetch extends GateWayEvent {
final String deviceId;
const GateWayFetch(this.deviceId);
}
class GatWayById extends GateWayEvent {
final String getWayId;
const GatWayById(this.getWayId);
}