ArrowLinkProps constructor

const ArrowLinkProps({
  1. required String label,
  2. String? href,
  3. ArrowLinkSize size = ArrowLinkSize.sm,
  4. bool showArrow = true,
  5. bool arrowBefore = false,
  6. bool accent = true,
  7. void onTap()?,
  8. ArrowLinkVariant variant = ArrowLinkVariant.inline,
  9. bool animateArrow = false,
})

Implementation

const ArrowLinkProps({
  required this.label,
  this.href,
  this.size = ArrowLinkSize.sm,
  this.showArrow = true,
  this.arrowBefore = false,
  this.accent = true,
  this.onTap,
  this.variant = ArrowLinkVariant.inline,
  this.animateArrow = false,
});