GuestAttributes.fromJson constructor

GuestAttributes.fromJson(
  1. 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,
    );