bold property

bool? bold

Implementation

bool? get bold => attrs['bold'];
void bold=(bool? v)

Implementation

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