BluetoothPrinter constructor
BluetoothPrinter({
- String? id,
- String? name,
- String? address,
- int type = 0,
- ConnectionType? connectionType,
Implementation
BluetoothPrinter({
String? id,
String? name,
String? address,
int type = 0,
ConnectionType? connectionType,
}) {
this.id = id;
this.name = name;
this.address = address;
this.type = type;
this.connectionType = ConnectionType.bluetooth;
}