font property

String font

Implementation

String get font => _font;
void font=(String value)

Implementation

set font(String value) {
  addAction((Canvas canvas, Size size) {
    // Must lazy parse in action because it has side-effect with _fontProperties.
    if (_parseFont(value)) {
      _font = value;
    }
  });
}