NomoLinkButton constructor

const NomoLinkButton({
  1. required String text,
  2. Key? key,
  3. Color? foregroundColor,
  4. Color? selectionColor,
  5. EdgeInsetsGeometry? padding,
  6. TextStyle? textStyle,
  7. VoidCallback? onPressed,
  8. bool? enabled,
  9. double? width,
  10. double? height,
  11. EdgeInsetsGeometry? margin,
  12. Color? tapDownColor,
})

Implementation

const NomoLinkButton({
  required this.text,
  super.key,
  this.foregroundColor,
  this.selectionColor,
  this.padding,
  this.textStyle,
  this.onPressed,
  this.enabled,
  this.width,
  this.height,
  this.margin,
  this.tapDownColor,
});