Anchor constructor
const
Anchor({
- String? href,
- String? hrefLang,
- String? ping,
- ReferrerPolicyType? referrerPolicy,
- String? rel,
- String? target,
- String? download,
- String? type,
- Key? key,
- NullableElementCallback? ref,
- String? id,
- String? title,
- String? style,
- String? className,
- String? innerText,
- Widget? child,
- List<
Widget> ? children, - EventCallback? onClick,
- Map<
String, String> ? additionalAttributes,
Implementation
const Anchor({
this.href,
this.hrefLang,
this.ping,
this.referrerPolicy,
this.rel,
this.target,
this.download,
this.type,
Key? key,
NullableElementCallback? ref,
String? id,
String? title,
String? style,
String? className,
bool? hidden,
String? innerText,
Widget? child,
List<Widget>? children,
EventCallback? onClick,
Map<String, String>? additionalAttributes,
}) : super(
key: key,
ref: ref,
id: id,
title: title,
style: style,
className: className,
hidden: hidden,
innerText: innerText,
child: child,
children: children,
onClick: onClick,
additionalAttributes: additionalAttributes,
);