InputElement constructor

InputElement({
  1. String? type,
})

Implementation

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