part of 'scoop_search_bloc.dart'; abstract class ScoopSearchState extends Equatable { const ScoopSearchState(); @override List get props => []; } class ScoopSearchInitial extends ScoopSearchState {} class ScoopSearchLoading extends ScoopSearchState {} class ScoopSearchLoaded extends ScoopSearchState { final Map> apps; const ScoopSearchLoaded(this.apps); @override List get props => [apps]; } class ScoopSearchError extends ScoopSearchState { final String message; const ScoopSearchError(this.message); @override List get props => [message]; }