Printer constructor

Printer({
  1. required String url,
  2. required String name,
  3. String? model,
  4. String? location,
  5. String? comment,
  6. required bool isDefault,
  7. required bool isAvailable,
  8. required int state,
})

Implementation

Printer({
  required this.url,
  required this.name,
  this.model,
  this.location,
  this.comment,
  required this.isDefault,
  required this.isAvailable,
  required this.state,
});