GuestAttributes.fromJson constructor
GuestAttributes.fromJson(
- Map json_
Implementation
GuestAttributes.fromJson(core.Map json_)
: this(
queryPath: json_['queryPath'] as core.String?,
queryValue:
json_.containsKey('queryValue')
? GuestAttributesValue.fromJson(
json_['queryValue'] as core.Map<core.String, core.dynamic>,
)
: null,
);