ClickThroughUrl.fromJson constructor

ClickThroughUrl.fromJson(
  1. Map json_
)

Implementation

ClickThroughUrl.fromJson(core.Map json_)
    : this(
        computedClickThroughUrl:
            json_['computedClickThroughUrl'] as core.String?,
        customClickThroughUrl: json_['customClickThroughUrl'] as core.String?,
        defaultLandingPage: json_['defaultLandingPage'] as core.bool?,
        landingPageId: json_['landingPageId'] as core.String?,
      );