$RemarketingValueAttribute.fromJson constructor

$RemarketingValueAttribute.fromJson(
  1. Map json_
)

Implementation

$RemarketingValueAttribute.fromJson(core.Map json_)
  : this(
      fieldId: json_['fieldId'] as core.int?,
      userAttributeIds: (json_['userAttributeIds'] as core.List?)
          ?.map((value) => value as core.String)
          .toList(),
    );