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