copyWith method
Implementation
HighlightItem copyWith(
{TextRange? range,
String? text,
TextStyle? textStyle,
dynamic customConfig}) {
return HighlightItem(
range: range ?? this.range,
text: text ?? this.text,
textStyle: textStyle ?? this.textStyle,
customConfig: customConfig ?? this.customConfig);
}