OptimusStandaloneLink constructor

const OptimusStandaloneLink({
  1. Key? key,
  2. VoidCallback? onPressed,
  3. required Widget text,
  4. OptimusStandaloneLinkSize? size,
  5. TextOverflow? overflow,
  6. bool inherit = false,
  7. bool isExternal = false,
  8. bool strong = false,
  9. OptimusLinkVariant variant = OptimusLinkVariant.primary,
})

Implementation

const OptimusStandaloneLink({
  super.key,
  this.onPressed,
  required this.text,
  this.size,
  this.overflow,
  this.inherit = false,
  this.isExternal = false,
  this.strong = false,
  this.variant = OptimusLinkVariant.primary,
});