AlertButtons constructor

AlertButtons({
  1. Key? key,
  2. required Widget child,
  3. required Function onPressed,
  4. Color? color,
  5. double? width,
  6. double height = 40.0,
  7. BorderRadius? radius,
})

Implementation

AlertButtons(
    {Key? key,
    required this.child,
    required this.onPressed,
    this.color,
    this.width,
    this.height = 40.0,
    this.radius})
    : super(key: key);