InputBoolean constructor

InputBoolean(
  1. int id,
  2. List<Macro> macros,
  3. IsobusColor backgroundColor,
  4. int width,
  5. IsobusColor foregroundColor,
  6. NumberVariable? numberVariableReference,
  7. bool value,
  8. bool enabled,
)

Implementation

InputBoolean(
    int id,
    List<Macro> macros,
    this.backgroundColor,
    this.width,
    this.foregroundColor,
    this.numberVariableReference,
    this.value,
    this.enabled)
    : super(id, IsobusObjectType.inputBoolean, macros);