Button2 constructor

const Button2({
  1. Key? key,
  2. double width = 50,
  3. double height = 50.0,
  4. Color? color,
  5. Icon? icon,
})

Implementation

const Button2({
  super.key,
  this.width = 50,
  this.height = 50.0,
  this.color,
  this.icon,
});