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