NetWorkPrinter constructor

NetWorkPrinter({
  1. String? id,
  2. String? name,
  3. String? address,
  4. int type = 0,
  5. ConnectionType? connectionType,
})

Implementation

NetWorkPrinter({
  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.network;
}