copyWith method

TextEntity copyWith({
  1. int? offset,
  2. int? length,
  3. TextEntityType? type,
})

Implementation

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