ReportRequestTimeRange.fromJson constructor

ReportRequestTimeRange.fromJson(
  1. Map json_
)

Implementation

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