OutlinedButton constructor

const OutlinedButton({
  1. Key? key,
  2. Color? color,
  3. Widget? child,
  4. EdgeInsets? padding,
  5. bool? guessTextColor,
  6. double? minWidth = 80,
  7. double? height = 40,
  8. required void onPressed(),
  9. BorderRadius? borderRadius,
  10. bool busy = false,
  11. Color? busyColor,
  12. Duration? loadingDebounce,
  13. bool disabled = false,
  14. double? borderWidth,
})

Implementation

const OutlinedButton({
  Key? key,
  this.color,
  this.child,
  this.padding,
  this.guessTextColor,
  this.minWidth = 80,
  this.height = 40,
  required this.onPressed,
  this.borderRadius,
  this.busy = false,
  this.busyColor,
  this.loadingDebounce,
  this.disabled = false,
  this.borderWidth,
}) : super(key: key);