SourceTree constructor

SourceTree(
  1. Type type,
  2. List<Match> matches
)

Implementation

SourceTree(this.type, List<Match> matches) {
  for ( var match in matches) {
    insertMatch(match);
  }
}