Parse from a json
factory UpdateFile.fromJson(Map<String, dynamic> json) => UpdateFile( file: File.fromJson(json['file']), extra: json['@extra'], clientId: json['@client_id'], );