copyWith method

MatchedSubstringGoogle copyWith({
  1. int? length,
  2. int? offset,
})

Implementation

MatchedSubstringGoogle copyWith({
  int? length,
  int? offset,
}) =>
    MatchedSubstringGoogle(
      length: length ?? this.length,
      offset: offset ?? this.offset,
    );