$CreativeClickThroughUrl.fromJson constructor

$CreativeClickThroughUrl.fromJson(
  1. Map json_
)

Implementation

$CreativeClickThroughUrl.fromJson(core.Map json_)
    : this(
        computedClickThroughUrl: json_.containsKey('computedClickThroughUrl')
            ? json_['computedClickThroughUrl'] as core.String
            : null,
        customClickThroughUrl: json_.containsKey('customClickThroughUrl')
            ? json_['customClickThroughUrl'] as core.String
            : null,
        landingPageId: json_.containsKey('landingPageId')
            ? json_['landingPageId'] as core.String
            : null,
      );