descriptionStyles property
List<MatchClassification> ?
get
descriptionStyles
An array of style ranges for the description, as provided by the extension.
Implementation
List<MatchClassification>? get descriptionStyles =>
_wrapped.descriptionStyles?.toDart
.cast<$js.MatchClassification>()
.map((e) => MatchClassification.fromJS(e))
.toList();
set
descriptionStyles
(List<MatchClassification> ? v)
Implementation
set descriptionStyles(List<MatchClassification>? v) {
_wrapped.descriptionStyles = v?.toJSArray((e) => e.toJS);
}