removeStyle method
Strip the style change.
Implementation
OptionsDiff removeStyle() {
  if (style == null) return this;
  return OptionsDiff(
    color: this.color,
    size: this.size,
    textFontOptions: this.textFontOptions,
    mathFontOptions: this.mathFontOptions,
  );
}