ActionDownload.fromJson constructor

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

Implementation

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