font property
String
get
font
Implementation
String get font => _font;
set
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;
}
});
}