copyWith method

TermGoogle copyWith({
  1. int? offset,
  2. String? value,
})

Implementation

TermGoogle copyWith({
  int? offset,
  String? value,
}) =>
    TermGoogle(
      offset: offset ?? this.offset,
      value: value ?? this.value,
    );