push routine name field

This commit is contained in:
ashrafzarkanisala
2024-11-26 11:40:34 +03:00
parent 7ea628af92
commit 8d908e894b
3 changed files with 15 additions and 1 deletions

View File

@ -115,4 +115,10 @@ class CreateAutomationEvent extends RoutineEvent {
List<Object> get props => [];
}
class SetRoutineName extends RoutineEvent {
final String name;
const SetRoutineName(this.name);
@override
List<Object> get props => [name];
}
class ClearFunctions extends RoutineEvent {}