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