app_event.dart 236 B

12345678
  1. part of 'app_bloc.dart';
  2. @freezed
  3. abstract class AppEvent with _$AppEvent {
  4. const factory AppEvent.initial() = _Initial;
  5. const factory AppEvent.viewsReceived(
  6. Either<List<View>, WorkspaceError> appsOrFail) = ViewsReceived;
  7. }