font property

String? font

Implementation

String? get font => attrs['font'];
void font=(String? v)

Implementation

set font(String? v) => v == null ? attrs.remove('font') : attrs['font'] = v;