GoogleFile.fromJson constructor
Implementation
factory GoogleFile.fromJson(Map<String, dynamic> json) => GoogleFile(
name: json['name'] as String,
displayName: json['displayName'] as String,
mimeType: json['mimeType'] as String,
sizeBytes: int.parse(json['sizeBytes'] as String),
state: json['state'] as String,
uri: json['uri'] as String?,
);