CustomElevatedButton constructor

const CustomElevatedButton({
  1. Key? key,
  2. Color? color,
  3. Size? size,
  4. double? borderRadius,
  5. void onPressed()?,
  6. BorderSide? borderSide,
  7. Widget? child,
})

Implementation

const CustomElevatedButton(
    {super.key,
      this.color,
      this.size,
      this.borderRadius,
      this.onPressed,
      this.borderSide,
      this.child});