ThirdPartyTrackingUrl.fromJson constructor

ThirdPartyTrackingUrl.fromJson(
  1. Map json_
)

Implementation

ThirdPartyTrackingUrl.fromJson(core.Map json_)
    : this(
        thirdPartyUrlType: json_.containsKey('thirdPartyUrlType')
            ? json_['thirdPartyUrlType'] as core.String
            : null,
        url: json_.containsKey('url') ? json_['url'] as core.String : null,
      );