copyWith method
VComboboxStyle
copyWith({
- Color? backgroundColor,
- dynamic listTileColor,
- dynamic listTileResultIconColor,
- dynamic errorTextColor,
- dynamic resultTextColor,
- dynamic appBarTitleTextColor,
- dynamic clearIconColor,
- VInputStyle? inputStyle,
- VAppBarStyle? appBarStyle,
- TextStyle? errorTextStyle,
- dynamic resultTextStyle,
override
Creates a copy of this theme extension with the given fields replaced by the non-null parameter values.
Implementation
@override
VComboboxStyle copyWith({
Color? backgroundColor,
listTileColor,
listTileResultIconColor,
errorTextColor,
resultTextColor,
appBarTitleTextColor,
clearIconColor,
VInputStyle? inputStyle,
VAppBarStyle? appBarStyle,
TextStyle? errorTextStyle,
resultTextStyle,
}) =>
VComboboxStyle(
backgroundColor: backgroundColor ?? this.backgroundColor,
listTileColor: listTileColor ?? this.listTileColor,
listTileResultIconColor:
listTileResultIconColor ?? this.listTileResultIconColor,
errorTextColor: errorTextColor ?? this.errorTextColor,
resultTextColor: resultTextColor ?? this.resultTextColor,
appBarTitleTextColor: appBarTitleTextColor ?? this.appBarTitleTextColor,
clearIconColor: clearIconColor ?? this.clearIconColor,
inputStyle: inputStyle ?? this.inputStyle,
appBarStyle: appBarStyle ?? this.appBarStyle,
errorTextStyle: errorTextStyle ?? this.errorTextStyle,
resultTextStyle: resultTextStyle ?? this.resultTextStyle,
);