GetGuestAttributesResponse.fromJson constructor

GetGuestAttributesResponse.fromJson(
  1. Map json_
)

Implementation

GetGuestAttributesResponse.fromJson(core.Map json_)
    : this(
        guestAttributes: json_.containsKey('guestAttributes')
            ? (json_['guestAttributes'] as core.List)
                .map((value) => GuestAttributes.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList()
            : null,
      );