mirror of
https://github.com/SyncrowIOT/syncrow-app.git
synced 2025-07-21 20:45:26 +00:00
solved dialog function re call bug
This commit is contained in:
@ -42,6 +42,14 @@ class TempHoldSceneTasksEvent extends CreateSceneEvent {
|
||||
];
|
||||
}
|
||||
|
||||
class UpdateTaskEvent extends CreateSceneEvent {
|
||||
final String taskId;
|
||||
final dynamic newValue;
|
||||
const UpdateTaskEvent({required this.taskId, required this.newValue});
|
||||
@override
|
||||
List<Object> get props => [taskId, newValue];
|
||||
}
|
||||
|
||||
class SelectedValueEvent extends CreateSceneEvent {
|
||||
final dynamic value;
|
||||
final String code;
|
||||
|
Reference in New Issue
Block a user