Anchor constructor
const
Anchor({
- Key? key,
- String? href,
- String? rel,
- String? target,
- String? download,
- bool? draggable,
- bool? contentEditable,
- int? tabIndex,
- String? id,
- String? title,
- String? style,
- String? classAttribute,
- String? onClickAttribute,
- String? innerText,
- List<
Widget> ? children, - EventCallback? onClick,
- Map<
String, String> ? additionalAttributes,
Implementation
const Anchor({
Key? key,
this.href,
this.rel,
this.target,
this.download,
bool? hidden,
bool? draggable,
bool? contentEditable,
int? tabIndex,
String? id,
String? title,
String? style,
String? classAttribute,
String? onClickAttribute,
String? innerText,
List<Widget>? children,
EventCallback? onClick,
Map<String, String>? additionalAttributes,
}) : super(
key: key,
id: id,
title: title,
tabIndex: tabIndex,
draggable: draggable,
contentEditable: contentEditable,
hidden: hidden,
style: style,
classAttribute: classAttribute,
onClickAttribute: onClickAttribute,
innerText: innerText,
children: children,
onClick: onClick,
additionalAttributes: additionalAttributes,
);