strike property

bool? strike

Implementation

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

Implementation

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