InputElement constructor
InputElement({
- String? type,
Implementation
factory InputElement({String? type}) {
final e = InputElement._(window.document);
if (type != null) {
e.type = type;
}
return e;
}