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