SequenceMatcher<T> constructor
SequenceMatcher<T> ({
- Iterable<
T> ? source, - Iterable<
T> ? target, - Predicate1<
T> ? isJunk, - bool autoJunk = true,
Implementation
SequenceMatcher({
Iterable<T>? source,
Iterable<T>? target,
Predicate1<T>? isJunk,
bool autoJunk = true,
}) : _isJunk = isJunk,
_autoJunk = autoJunk {
this.source = source ?? <T>[];
this.target = target ?? <T>[];
}