ReportKey.fromJson constructor

ReportKey.fromJson(
  1. Map json_
)

Implementation

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