VLink constructor
const
VLink({
- Key? key,
- required String title,
- required VoidCallback? onPressed,
- bool isUnderlined = false,
- bool isLeadingIcon = false,
- bool isTrailingIcon = false,
- bool rtl = false,
- SemanticsSortKey? semSortKey,
- String? semanticLabel,
- double? touchArea,
- double? linkFontSize,
- FontWeight? linkFontWeight,
- Widget? trailingIcon,
- Widget? leadingIcon,
- VLinkStyle? style,
- 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);