ListPrintServersResponse.fromJson constructor
ListPrintServersResponse.fromJson(
- Map json_
Implementation
ListPrintServersResponse.fromJson(core.Map json_)
: this(
nextPageToken: json_.containsKey('nextPageToken')
? json_['nextPageToken'] as core.String
: null,
printServers: json_.containsKey('printServers')
? (json_['printServers'] as core.List)
.map((value) => PrintServer.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList()
: null,
);