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,
      property: json_['property'] as core.String?,
      propertyId: json_['propertyId'] as core.String?,
    );