ActionDownload.fromJson constructor
Implementation
factory ActionDownload.fromJson(Map<String, dynamic> json) => ActionDownload(
fileName: (json['FileName'] as String?) ?? '',
mime: (json['Mime'] as String?) ?? '',
data: (json['Data'] as String?) ?? '',
);