copyWith method
Implementation
@internal
HtmlEditorValue copyWith({
String? html,
EditorSelectionState? selectionState,
}) {
return HtmlEditorValue._(
html: html ?? this.html,
selectionState: selectionState ?? _selectionState,
);
}
@internal
HtmlEditorValue copyWith({
String? html,
EditorSelectionState? selectionState,
}) {
return HtmlEditorValue._(
html: html ?? this.html,
selectionState: selectionState ?? _selectionState,
);
}