RemarketingListShare.fromJson constructor

RemarketingListShare.fromJson(
  1. Map json_
)

Implementation

RemarketingListShare.fromJson(core.Map json_)
    : this(
        kind: json_.containsKey('kind') ? json_['kind'] as core.String : null,
        remarketingListId: json_.containsKey('remarketingListId')
            ? json_['remarketingListId'] as core.String
            : null,
        sharedAccountIds: json_.containsKey('sharedAccountIds')
            ? (json_['sharedAccountIds'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
        sharedAdvertiserIds: json_.containsKey('sharedAdvertiserIds')
            ? (json_['sharedAdvertiserIds'] as core.List)
                .map((value) => value as core.String)
                .toList()
            : null,
      );