MatchClassification constructor

MatchClassification({
  1. required int offset,
  2. required DescriptionStyleType type,
  3. 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,
      );