BatchDeletePrintersResponse.fromJson constructor
BatchDeletePrintersResponse.fromJson(
- Map json_
Implementation
BatchDeletePrintersResponse.fromJson(core.Map json_)
: this(
failedPrinters: (json_['failedPrinters'] as core.List?)
?.map((value) => FailureInfo.fromJson(
value as core.Map<core.String, core.dynamic>))
.toList(),
printerIds: (json_['printerIds'] as core.List?)
?.map((value) => value as core.String)
.toList(),
);