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