OutputFile.fromJson constructor
OutputFile.fromJson(
- Map json_
Implementation
OutputFile.fromJson(core.Map json_)
: this(
csvOutputFile: json_.containsKey('csvOutputFile')
? CsvOutputFile.fromJson(
json_['csvOutputFile'] as core.Map<core.String, core.dynamic>,
)
: null,
fileSizeBytes: json_['fileSizeBytes'] as core.String?,
xlsxOutputFile: json_.containsKey('xlsxOutputFile')
? XlsxOutputFile.fromJson(
json_['xlsxOutputFile'] as core.Map<core.String, core.dynamic>,
)
: null,
);