part of 'itemscubit.dart'; class ItemsState extends Equatable { const ItemsState(this.items, this.isLoading); final List items; final bool isLoading; @override List get props => [items, isLoading]; ItemsState copyWith({ final List? items, final bool? isLoading, }) => ItemsState( items ?? this.items, isLoading ?? this.isLoading, ); }