VLink constructor

const VLink({
  1. Key? key,
  2. required String title,
  3. required VoidCallback? onPressed,
  4. bool isUnderlined = false,
  5. bool isLeadingIcon = false,
  6. bool isTrailingIcon = false,
  7. bool rtl = false,
  8. SemanticsSortKey? semSortKey,
  9. String? semanticLabel,
  10. double? touchArea,
  11. double? linkFontSize,
  12. FontWeight? linkFontWeight,
  13. Widget? trailingIcon,
  14. Widget? leadingIcon,
  15. VLinkStyle? style,
  16. VExt? vExt,
})

Implementation

const VLink({
  Key? key,
  required this.title,
  required this.onPressed,
  this.isUnderlined = false,
  this.isLeadingIcon = false,
  this.isTrailingIcon = false,
  this.rtl = false,
  this.semSortKey,
  this.semanticLabel,
  this.touchArea,
  this.linkFontSize,
  this.linkFontWeight,
  this.trailingIcon,
  this.leadingIcon,
  this.style,
  this.vExt,
}) : super(key: key);