GuestAttributes.fromJson constructor

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