ReportKey.fromJson constructor
ReportKey.fromJson(
- Map json_
Implementation
ReportKey.fromJson(core.Map json_)
: this(
queryId: json_.containsKey('queryId')
? json_['queryId'] as core.String
: null,
reportId: json_.containsKey('reportId')
? json_['reportId'] as core.String
: null,
);