import 'package:core/core.dart'; import 'package:model/model.dart'; class DownloadAttachmentsSuccess extends UIState { final List taskIds; DownloadAttachmentsSuccess(this.taskIds); @override List get props => [taskIds]; } class DownloadAttachmentsFailure extends FeatureFailure { final dynamic exception; DownloadAttachmentsFailure(this.exception); @override List get props => [exception]; }