app_event.dart 186 B

1234567
  1. part of 'app_bloc.dart';
  2. @freezed
  3. abstract class AppEvent with _$AppEvent {
  4. const factory AppEvent.appsReceived(
  5. Either<List<App>, WorkspaceError> appsOrFail) = AppsReceived;
  6. }