Added inline file download progressbar, handle OpenFile directly and handle errors
This commit is contained in:
@@ -8,9 +8,9 @@ part of 'cacheableFile.dart';
|
||||
|
||||
CacheableFile _$CacheableFileFromJson(Map<String, dynamic> json) =>
|
||||
CacheableFile(
|
||||
json['path'] as String,
|
||||
json['isDirectory'] as bool,
|
||||
json['name'] as String,
|
||||
path: json['path'] as String,
|
||||
isDirectory: json['isDirectory'] as bool,
|
||||
name: json['name'] as String,
|
||||
mimeType: json['mimeType'] as String?,
|
||||
size: json['size'] as int?,
|
||||
eTag: json['eTag'] as String?,
|
||||
|
Reference in New Issue
Block a user