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