copyWith method
      
  
VDropdownIconStyle
copyWith({ 
    
- Color? dropDownColor,
 - dynamic dropdownBorderColor,
 - dynamic backgroundSplashColor,
 - dynamic isSecDisabledButtonColor,
 - dynamic disabledButtonColor,
 - dynamic isSecTappedButtonColor,
 - dynamic tappedButtonColor,
 - dynamic buttonDefaultColor,
 - dynamic defaultSecButtonColor,
 - dynamic isSecDisabledBorderColor,
 - dynamic disabledIconColor,
 - dynamic isSecDefaultBorderColor,
 - dynamic defaultIconColor,
 - dynamic disabledBorderColor,
 - dynamic isSecDisabledIconColor,
 - dynamic isSecDefaultIconColor,
 - dynamic defaultBorderColor,
 - double? dropdownBorderRadius,
 - dynamic bigIconSize,
 - dynamic defaultIconSize,
 - TextStyle? dropdownTextStyle,
 
override
    Creates a copy of this theme extension with the given fields replaced by the non-null parameter values.
Implementation
@override
VDropdownIconStyle copyWith({
  Color? dropDownColor,
  dropdownBorderColor,
  backgroundSplashColor,
  isSecDisabledButtonColor,
  disabledButtonColor,
  isSecTappedButtonColor,
  tappedButtonColor,
  buttonDefaultColor,
  defaultSecButtonColor,
  isSecDisabledBorderColor,
  disabledIconColor,
  isSecDefaultBorderColor,
  defaultIconColor,
  disabledBorderColor,
  isSecDisabledIconColor,
  isSecDefaultIconColor,
  defaultBorderColor,
  double? dropdownBorderRadius,
  bigIconSize,
  defaultIconSize,
  TextStyle? dropdownTextStyle,
}) =>
    VDropdownIconStyle(
      backgroundSplashColor: backgroundSplashColor ?? this.backgroundSplashColor,
      dropdownBorderColor: dropdownBorderColor ?? this.dropdownBorderColor,
      dropDownColor: dropDownColor ?? this.dropDownColor,
      isSecDisabledButtonColor: isSecDisabledButtonColor ?? this.isSecDisabledButtonColor,
      disabledButtonColor: disabledButtonColor ?? this.disabledButtonColor,
      isSecTappedButtonColor: isSecTappedButtonColor ?? this.isSecTappedButtonColor,
      tappedButtonColor: tappedButtonColor ?? this.tappedButtonColor,
      buttonDefaultColor: buttonDefaultColor ?? this.buttonDefaultColor,
      defaultSecButtonColor: defaultSecButtonColor ?? this.defaultSecButtonColor,
      isSecDisabledBorderColor: isSecDisabledBorderColor ?? this.isSecDisabledBorderColor,
      disabledIconColor: disabledIconColor ?? this.disabledIconColor,
      defaultIconColor: defaultIconColor ?? this.defaultIconColor,
      isSecDefaultBorderColor: isSecDefaultBorderColor ?? this.isSecDefaultBorderColor,
      disabledBorderColor: disabledBorderColor ?? this.disabledBorderColor,
      defaultBorderColor: defaultBorderColor ?? this.defaultBorderColor,
      isSecDisabledIconColor: isSecDisabledIconColor ?? this.isSecDisabledIconColor,
      isSecDefaultIconColor: isSecDefaultIconColor ?? this.isSecDefaultIconColor,
      dropdownTextStyle: dropdownTextStyle ?? this.dropdownTextStyle,
      dropdownBorderRadius: dropdownBorderRadius ?? this.dropdownBorderRadius,
      bigIconSize: bigIconSize ?? this.bigIconSize,
      defaultIconSize: defaultIconSize ?? this.defaultIconSize,
    );