Match constructor

const Match({
  1. required int sourceStart,
  2. required int targetStart,
  3. required int length,
})

Constructs a new match.

Implementation

const Match({
  required this.sourceStart,
  required this.targetStart,
  required this.length,
});