type property
String
get
type
Implementation
String get type => getAttribute('type') ?? 'text';
set
type
(dynamic value)
Implementation
void set type(value) {
internalSetAttribute('type', value?.toString() ?? '');
resetInputDefaultStyle();
}