ListUsableWorkstationConfigsResponse.fromJson constructor

ListUsableWorkstationConfigsResponse.fromJson(
  1. Map json_
)

Implementation

ListUsableWorkstationConfigsResponse.fromJson(core.Map json_)
    : this(
        nextPageToken: json_['nextPageToken'] as core.String?,
        unreachable: (json_['unreachable'] as core.List?)
            ?.map((value) => value as core.String)
            .toList(),
        workstationConfigs: (json_['workstationConfigs'] as core.List?)
            ?.map((value) => WorkstationConfig.fromJson(
                value as core.Map<core.String, core.dynamic>))
            .toList(),
      );