ReportKey.fromJson constructor

ReportKey.fromJson(
  1. 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,
      );