MatchClassification constructor
MatchClassification({
- required int offset,
- required DescriptionStyleType type,
- int? length,
Implementation
MatchClassification({
required int offset,
/// The style type
required DescriptionStyleType type,
int? length,
}) : _wrapped = $js.MatchClassification(
offset: offset,
type: type.toJS,
length: length,
);