GetGuestAttributesRequest.fromJson constructor

GetGuestAttributesRequest.fromJson(
  1. Map json_
)

Implementation

GetGuestAttributesRequest.fromJson(core.Map json_)
    : this(
        queryPath: json_['queryPath'] as core.String?,
        workerIds: (json_['workerIds'] as core.List?)
            ?.map((value) => value as core.String)
            .toList(),
      );