copyWith method

HtmlEditorValue copyWith({
  1. String? html,
})

Implementation

HtmlEditorValue copyWith({
  String? html,
}) {
  return HtmlEditorValue(
    html: html ?? this.html,
  );
}