createInputElement function
Implementation
HTMLInputElement createInputElement([String? type]) {
type = type?.trim().toLowerCase() ?? '';
return HTMLInputElement()..type = type;
}
HTMLInputElement createInputElement([String? type]) {
type = type?.trim().toLowerCase() ?? '';
return HTMLInputElement()..type = type;
}