part of 'background_images_bloc.dart'; abstract class BackgroundImagesState extends Equatable { const BackgroundImagesState(); @override String toString() => runtimeType.toString(); } class BackgroundImagesInitialState extends BackgroundImagesState { const BackgroundImagesInitialState(); @override List get props => []; } class BackgroundImagesLoadingState extends BackgroundImagesState { const BackgroundImagesLoadingState(); @override List get props => []; } class BackgroundImagesLoadedState extends BackgroundImagesState { final List backgroundImages; const BackgroundImagesLoadedState(this.backgroundImages); @override List get props => [backgroundImages]; } class BackgroundImagesErrorState extends BackgroundImagesState implements ErrorState { @override final String message; @override final Exception? cause; const BackgroundImagesErrorState({required this.message, this.cause}); @override List get props => [message, cause]; }