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