MyRoundedOutlineButton constructor

MyRoundedOutlineButton({
  1. Key? key,
  2. MyCustomButtonController? controller,
  3. required Widget child,
  4. Widget? progressIndicator,
  5. required Function onPressed,
  6. Color borderColor = magentaColor,
  7. TextStyle? textStyle = const TextStyle(color: magentaColor, fontSize: 16.0),
})

Implementation

MyRoundedOutlineButton({
  Key? key,
  this.controller,
  required this.child,
  this.progressIndicator,
  required this.onPressed,
  this.borderColor = magentaColor,
  this.textStyle = const TextStyle(
    color: magentaColor,
    fontSize: 16.0,
  ),
}) : super(key: key);