readOnly method
The value is not editable. Read more...
Implementation
Input readOnly(bool boolean) {
if (boolean && node.attrs != null) {
VirtualAttr attr = VirtualAttr('readonly', '');
node.attrs!.add(attr);
}
return this;
}
The value is not editable. Read more...
Input readOnly(bool boolean) {
if (boolean && node.attrs != null) {
VirtualAttr attr = VirtualAttr('readonly', '');
node.attrs!.add(attr);
}
return this;
}