CableDefinition constructor

const CableDefinition({
  1. required String id,
  2. required String name,
  3. required String description,
  4. required ConductorMaterial material,
  5. required CableInsulation insulation,
  6. required double maxTemp,
  7. required bool isFlexible,
})

Implementation

const CableDefinition({
  required this.id,
  required this.name,
  required this.description,
  required this.material,
  required this.insulation,
  required this.maxTemp,
  required this.isFlexible,
});