BatchDeletePrintServersRequest.fromJson constructor
BatchDeletePrintServersRequest.fromJson(
- Map json_
Implementation
BatchDeletePrintServersRequest.fromJson(core.Map json_)
: this(
printServerIds: json_.containsKey('printServerIds')
? (json_['printServerIds'] as core.List)
.map((value) => value as core.String)
.toList()
: null,
);