OutputMeter constructor

OutputMeter(
  1. int id,
  2. List<Macro> macros,
  3. int width,
  4. IsobusColor needleColor,
  5. IsobusColor borderColor,
  6. IsobusColor arcTickColor,
  7. OutputMeterOptions options,
  8. int numberOfTicks,
  9. int startAngle,
  10. int endAngle,
  11. int minValue,
  12. int maxValue,
  13. NumberVariable? numberVariable,
  14. int value,
)

Implementation

OutputMeter(
    int id,
    List<Macro> macros,
    this.width,
    this.needleColor,
    this.borderColor,
    this.arcTickColor,
    this.options,
    this.numberOfTicks,
    this.startAngle,
    this.endAngle,
    this.minValue,
    this.maxValue,
    this.numberVariable,
    this.value)
    : super(id, IsobusObjectType.outputMeter, macros);