copyWith method
FdcEditorThemeData
copyWith({
- FdcEditorInputStyle? input,
- FdcEditorControlsStyle? controls,
- FdcEditorComboPopupStyle? comboPopup,
- FdcCounterStyle? counter,
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,
);
}