ReportFooter.fromJson constructor
ReportFooter.fromJson(
- Map json_
Implementation
ReportFooter.fromJson(core.Map json_)
: this(
matchingRowCount: json_.containsKey('matchingRowCount')
? json_['matchingRowCount'] as core.String
: null,
warnings: json_.containsKey('warnings')
? (json_['warnings'] as core.List)
.map((value) => ReportWarning.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);