push nobody_time update

This commit is contained in:
ashrafzarkanisala
2024-08-27 21:25:36 +03:00
parent c70906af07
commit 7f8130d39b
4 changed files with 162 additions and 52 deletions

View File

@ -10,7 +10,7 @@ abstract class CeilingSensorEvent extends Equatable {
class CeilingInitialEvent extends CeilingSensorEvent {}
class CeilingChangeValueEvent extends CeilingSensorEvent {
final int value;
final dynamic value;
final String code;
const CeilingChangeValueEvent({required this.value, required this.code});