Button constructor

Button(
  1. int id,
  2. IsobusColor backgroundColor,
  3. List<ReferenceObject> objects,
  4. List<Macro> macros,
  5. int width,
  6. int height,
  7. IsobusColor borderColor,
  8. int keyCode,
  9. ButtonOptions options,
)

Implementation

Button(
    int id,
    IsobusColor backgroundColor,
    List<ReferenceObject> objects,
    List<Macro> macros,
    this.width,
    this.height,
    this.borderColor,
    this.keyCode,
    this.options)
    : super(id, IsobusObjectType.button, backgroundColor, objects, macros);