Button1Round constructor

const Button1Round({
  1. Key? key,
  2. double width = 140.0,
  3. double height = 40.0,
  4. Color? color,
  5. TextStyle? textStyle,
  6. required String text,
})

Implementation

const Button1Round({
  super.key,
  this.width = 140.0,
  this.height = 40.0,
  this.color,
  this.textStyle,
  required this.text,
});