GoogleAnalyticsAdminV1betaAccessDateRange.fromJson constructor

GoogleAnalyticsAdminV1betaAccessDateRange.fromJson(
  1. Map json_
)

Implementation

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