TF-629 Add list of supported mimeType in Android and iOS

This commit is contained in:
Dat PHAM HOANG
2022-06-08 22:22:23 +07:00
committed by Dat H. Pham
parent 34f3cfd6b1
commit 40a470dc21
5 changed files with 199 additions and 85 deletions
@@ -0,0 +1,12 @@
import 'package:equatable/equatable.dart';
import 'package:http_parser/http_parser.dart';
class DownloadedResponse with EquatableMixin {
final String filePath;
final MediaType? mediaType;
DownloadedResponse(this.filePath, {this.mediaType});
@override
List<Object?> get props => [filePath, mediaType];
}