home_watcher_event.dart 244 B

1234567
  1. part of 'home_watcher_bloc.dart';
  2. @freezed
  3. abstract class HomeWatcherEvent with _$HomeWatcherEvent {
  4. const factory HomeWatcherEvent.started(String workspaceId) = _Started;
  5. const factory HomeWatcherEvent.stop(String workspaceId) = _Stop;
  6. }