EntityAdWordsLinkEntity.fromJson constructor

EntityAdWordsLinkEntity.fromJson(
  1. Map json_
)

Implementation

EntityAdWordsLinkEntity.fromJson(core.Map json_)
  : this(
      webPropertyRef:
          json_.containsKey('webPropertyRef')
              ? WebPropertyRef.fromJson(
                json_['webPropertyRef']
                    as core.Map<core.String, core.dynamic>,
              )
              : null,
    );