copyWith method

Creates a copy with selected values replaced.

Implementation

FdcEditorThemeData copyWith({
  FdcEditorInputStyle? input,
  FdcEditorControlsStyle? controls,
  FdcEditorComboPopupStyle? comboPopup,
  FdcCounterStyle? counter,
}) {
  return FdcEditorThemeData(
    input: input ?? this.input,
    controls: controls ?? this.controls,
    comboPopup: comboPopup ?? this.comboPopup,
    counter: counter ?? this.counter,
  );
}