MatchedSubstring constructor

MatchedSubstring({
  1. int length = 0,
  2. int offset = 0,
})

Creates a MatchedSubstring instance.

Implementation

MatchedSubstring({
  this.length = 0,
  this.offset = 0,
});