Button2Alt constructor

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

Implementation

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