Equipment constructor

Equipment({
  1. int? id,
  2. String? name,
  3. String? photo,
  4. int? width,
  5. int? height,
  6. int? length,
  7. int? maxWeight,
  8. int? maxRange,
  9. int? maxVolume,
})

Implementation

Equipment({
  this.id,
  this.name,
  this.photo,
  this.width,
  this.height,
  this.length,
  this.maxWeight,
  this.maxRange,
  this.maxVolume,
});