getBindingProperty method
dynamic
getBindingProperty(
- String key
)
override
Implementation
@override
getBindingProperty(String key) {
switch (key) {
case 'width': return width;
case 'height': return height;
case 'rows': return rows;
case 'cols': return cols;
case 'value': return value;
case 'defaultValue': return defaultValue;
case 'autocomplete': return autocomplete;
case 'autofocus': return autofocus;
case 'required': return required;
case 'readonly': return readOnly;
case 'name': return name;
case 'disabled': return disabled;
case 'minLength': return minLength;
case 'maxLength': return maxLength;
case 'placeholder': return placeholder;
case 'inputMode': return inputMode;
default: return super.getBindingProperty(key);
}
}