push SOS device

This commit is contained in:
ashrafzarkanisala
2024-11-04 12:06:44 +03:00
parent 0fc709a5b1
commit 7b179c90c3
11 changed files with 306 additions and 142 deletions

View File

@ -37,3 +37,13 @@ class BackToSosStatusView extends SosDeviceEvent {
@override
List<Object?> get props => [];
}
class SosFactoryReset extends SosDeviceEvent {
final String deviceId;
final FactoryResetModel factoryReset;
const SosFactoryReset({required this.deviceId, required this.factoryReset});
@override
List<Object> get props => [deviceId, factoryReset];
}