fromMap static method
Implementation
static BluetoothPrinter fromMap(Map<dynamic, dynamic> map) {
return BluetoothPrinter(
modelName: map["modelName"],
macAddress: map["macAddress"]
);
}
static BluetoothPrinter fromMap(Map<dynamic, dynamic> map) {
return BluetoothPrinter(
modelName: map["modelName"],
macAddress: map["macAddress"]
);
}