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_.containsKey('propertyId')
            ? json_['propertyId'] as core.String
            : null,
        propertyName: json_.containsKey('propertyName')
            ? json_['propertyName'] as core.String
            : null,
      );