ExportDataRequest.fromJson constructor
Implementation
factory ExportDataRequest.fromJson(Map<String, dynamic> json) {
return ExportDataRequest(
name: json['name'] ?? '',
exportConfig: decode(json['exportConfig'], ExportDataConfig.fromJson),
);
}