TF-629 Add list of supported mimeType in Android and iOS
This commit is contained in:
committed by
Dat H. Pham
parent
34f3cfd6b1
commit
40a470dc21
@@ -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];
|
||||
}
|
||||
Reference in New Issue
Block a user