GuestAttributesValue.fromJson constructor
      
      GuestAttributesValue.fromJson(
    
    
- Map json_
Implementation
GuestAttributesValue.fromJson(core.Map json_)
  : this(
      items:
          (json_['items'] as core.List?)
              ?.map(
                (value) => GuestAttributesEntry.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
    );