UIIconButton constructor

UIIconButton({
  1. int elementId = 0,
  2. List<String> labels = const [],
  3. String styleId = '',
  4. UIIconType icon = UIIconType.none,
  5. UIColor color = UIColor.default_,
  6. String clickActionId = '',
  7. String pressStartActionId = '',
  8. String pressEndActionId = '',
  9. String pressChangeActionId = '',
  10. String pressUpActionId = '',
  11. String dragStartActionId = '',
  12. String dragEnterActionId = '',
  13. String dragLeaveActionId = '',
  14. String dragOverActionId = '',
  15. String dropActionId = '',
  16. String dragEndActionId = '',
})

Implementation

UIIconButton({
    this.elementId = 0,
    this.labels = const [],
    this.styleId = '',
    this.icon = UIIconType.none,
    this.color = UIColor.default_,
    this.clickActionId = '',
    this.pressStartActionId = '',
    this.pressEndActionId = '',
    this.pressChangeActionId = '',
    this.pressUpActionId = '',
    this.dragStartActionId = '',
    this.dragEnterActionId = '',
    this.dragLeaveActionId = '',
    this.dragOverActionId = '',
    this.dropActionId = '',
    this.dragEndActionId = '',
});