TF-32 Add domain layer of download attachment for android platform

This commit is contained in:
dab246
2021-09-16 09:07:11 +07:00
committed by Dat H. Pham
parent 9b43417ac8
commit ddf8a32e66
16 changed files with 214 additions and 13 deletions
+10
View File
@@ -0,0 +1,10 @@
import 'package:equatable/equatable.dart';
class DownloadTaskId with EquatableMixin {
final String taskId;
DownloadTaskId(this.taskId);
@override
List<Object> get props => [taskId];
}