TF-2764 Remove ViewAttachmentForWebInteractor
This commit is contained in:
@@ -1,29 +0,0 @@
|
||||
import 'package:tmail_ui_user/features/email/domain/state/download_attachment_for_web_state.dart';
|
||||
|
||||
class IdleViewAttachmentForWeb extends IdleDownloadAttachmentForWeb {}
|
||||
|
||||
class StartViewAttachmentForWeb extends StartDownloadAttachmentForWeb {
|
||||
StartViewAttachmentForWeb(super.taskId, super.attachment);
|
||||
}
|
||||
|
||||
class ViewingAttachmentForWeb extends DownloadingAttachmentForWeb {
|
||||
ViewingAttachmentForWeb(
|
||||
super.taskId,
|
||||
super.attachment,
|
||||
super.progress,
|
||||
super.downloaded,
|
||||
super.total,
|
||||
);
|
||||
}
|
||||
|
||||
class ViewAttachmentForWebSuccess extends DownloadAttachmentForWebSuccess {
|
||||
ViewAttachmentForWebSuccess(super.taskId, super.attachment, super.bytes);
|
||||
}
|
||||
|
||||
class ViewAttachmentForWebFailure extends DownloadAttachmentForWebFailure {
|
||||
ViewAttachmentForWebFailure({
|
||||
required super.attachment,
|
||||
super.taskId,
|
||||
super.exception,
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user