ImageButton constructor

ImageButton({
  1. String? icon,
  2. String? iconUrl,
  3. String? name,
  4. OnClick? onClick,
})

Implementation

ImageButton({
  this.icon,
  this.iconUrl,
  this.name,
  this.onClick,
});