a
AElement
a(
Create an a (anchor) element
Implementation
AElement a({
required String href,
required String text,
Map<String, dynamic>? props,
Map<String, dynamic>? style,
String? className,
}) {
final p = _buildProps(props: props, style: style, className: className);
p['href'] = href;
return AElement.fromJS(createElement('a'.toJS, createProps(p), text.toJS));
}