CustomButton constructor

CustomButton({
  1. Key? key,
  2. bool isInverted = false,
  3. String? buttonText,
  4. double? height,
  5. double? width,
  6. dynamic onPressed()?,
})

Implementation

CustomButton(
    {Key? key,
    this.isInverted = false,
    this.buttonText,
    this.height,
    this.width,
    this.onPressed})
    : super(key: key);