ReportRequestTimeRange.fromJson constructor

ReportRequestTimeRange.fromJson(
  1. Map json_
)

Implementation

ReportRequestTimeRange.fromJson(core.Map json_)
  : this(
      changedAttributesSinceTimestamp:
          json_['changedAttributesSinceTimestamp'] as core.String?,
      changedMetricsSinceTimestamp:
          json_['changedMetricsSinceTimestamp'] as core.String?,
      endDate: json_['endDate'] as core.String?,
      startDate: json_['startDate'] as core.String?,
    );