CustomButtonStyle constructor

CustomButtonStyle({
  1. String title = "Select",
  2. Color color = Colors.black,
  3. double? width,
  4. double height = 45,
  5. TextStyle textStyle = const TextStyle(color: Colors.white),
})

Implementation

CustomButtonStyle({
  this.title = "Select",
  this.color = Colors.black,
  this.width,
  this.height = 45,
  this.textStyle = const TextStyle(color: Colors.white),
});