$RequestValue.fromJson constructor
$RequestValue.fromJson(
- Map json_
Implementation
$RequestValue.fromJson(core.Map json_)
: this(
excludeFromUserAttributeIds:
(json_['excludeFromUserAttributeIds'] as core.List?)
?.map((value) => value as core.String)
.toList(),
key: json_['key'] as core.String?,
userAttributeIds:
(json_['userAttributeIds'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);