GoogleAnalyticsLink.fromJson constructor

GoogleAnalyticsLink.fromJson(
  1. Map json_
)

Implementation

GoogleAnalyticsLink.fromJson(core.Map json_)
  : this(
      attributionSettings: json_.containsKey('attributionSettings')
          ? AttributionSettings.fromJson(
              json_['attributionSettings']
                  as core.Map<core.String, core.dynamic>,
            )
          : null,
      propertyId: json_['propertyId'] as core.String?,
      propertyName: json_['propertyName'] as core.String?,
    );