import 'package:core/presentation/state/failure.dart'; import 'package:core/presentation/state/success.dart'; import 'package:jmap_dart_client/jmap/quotas/quota.dart'; class GetQuotasLoading extends LoadingState {} class GetQuotasSuccess extends UIState { final List quotas; GetQuotasSuccess(this.quotas); @override List get props => [quotas]; } class GetQuotasFailure extends FeatureFailure { GetQuotasFailure(dynamic exception) : super(exception: exception); }