fromMap static method

NetPrinter fromMap(
  1. Map map
)

Implementation

static NetPrinter fromMap(Map<dynamic, dynamic> map) {
  return NetPrinter(
      modelName: map["modelName"],
      serNo: map["serNo"],
      ipAddress: map["ipAddress"],
      macAddress: map["macAddress"],
      nodeName: map["nodeName"],
      location: map["location"]);
}