copyWith method

DiffEntity copyWith({
  1. int? offset,
  2. int? length,
  3. DiffEntityType? type,
})

Implementation

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