cols property

int cols

Implementation

int get cols => int.tryParse(getAttribute('cols') ?? '') ?? 0;
void cols=(int value)

Implementation

set cols(int value) {
  if (value < 0) value = 0;
  internalSetAttribute('cols', value.toString());
  _updateDefaultWidth();
}