ModOutlineButton constructor

const ModOutlineButton({
  1. Key? key,
  2. required double height,
  3. required double width,
  4. VoidCallback? onPressed,
  5. OutlinedBorder? shape,
  6. BorderSide? borderSide,
  7. required Widget child,
  8. Color? overlayColor,
})

easy Mod of OutlinedButton

Implementation

const ModOutlineButton({
  Key? key,
  required this.height,
  required this.width,
  this.onPressed,
  this.shape,
  this.borderSide,
  required this.child,
  this.overlayColor,
}) : super(key: key);