UpdateFile.fromJson constructor

UpdateFile.fromJson(
  1. Map<String, dynamic> json
)

Parse from a json

Implementation

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