cols property
int
get
cols
Implementation
int get cols => int.tryParse(getAttribute('cols') ?? '') ?? 0;
set
cols
(int value)
Implementation
set cols(int value) {
if (value < 0) value = 0;
internalSetAttribute('cols', value.toString());
_updateDefaultWidth();
}