LinkButton constructor

const LinkButton({
  1. Key? key,
  2. required void onPressed(),
  3. required Widget child,
  4. double minWidth = 74,
  5. double height = 56,
  6. Color? color,
  7. bool withInk = true,
  8. bool busy = false,
  9. Color? busyColor,
  10. Duration? loadingDebounce,
  11. bool disabled = false,
})

Implementation

const LinkButton({
  Key? key,
  required this.onPressed,
  required this.child,
  this.minWidth = 74,
  this.height = 56,
  this.color,
  this.withInk = true,
  this.busy = false,
  this.busyColor,
  this.loadingDebounce,
  this.disabled = false,
}) : super(key: key);