copyWith method
Implementation
WebThemeData copyWith({
IconData? rotateLeftIcon,
IconData? rotateRightIcon,
IconData? doneIcon,
IconData? backIcon,
Color? rotateIconColor,
double? scaleSliderMinValue,
double? scaleSliderMaxValue,
int? scaleSliderDivisions,
}) {
return WebThemeData(
rotateLeftIcon: rotateLeftIcon ?? this.rotateLeftIcon,
rotateRightIcon: rotateRightIcon ?? this.rotateRightIcon,
doneIcon: doneIcon ?? this.doneIcon,
backIcon: backIcon ?? this.backIcon,
rotateIconColor: rotateIconColor ?? this.rotateIconColor,
scaleSliderMinValue: scaleSliderMinValue ?? this.scaleSliderMinValue,
scaleSliderMaxValue: scaleSliderMaxValue ?? this.scaleSliderMaxValue,
scaleSliderDivisions: scaleSliderDivisions ?? this.scaleSliderDivisions,
);
}