ProtectionDefinition constructor

const ProtectionDefinition({
  1. required String id,
  2. required String name,
  3. required ProtectionType type,
  4. double ratingAmps = 16.0,
  5. int poles = 2,
  6. String curve = "C",
  7. double sensitivityMa = 30.0,
  8. double breakingCapacityKa = 6.0,
  9. double? defaultCableSection,
})

Implementation

const ProtectionDefinition({
  required this.id,
  required this.name,
  required this.type,
  this.ratingAmps = 16.0,
  this.poles = 2,
  this.curve = "C",
  this.sensitivityMa = 30.0,
  this.breakingCapacityKa = 6.0,
  this.defaultCableSection,
});