fontSize property

int? fontSize

Get Font Size

Implementation

int? get fontSize {
  return _fontSize;
}
void fontSize=(int? _fs)

Set Font Size

Implementation

set fontSize(int? _fs) {
  _fontSize = _fs;
}