copyWith method

WebThemeData copyWith({
  1. IconData? rotateLeftIcon,
  2. IconData? rotateRightIcon,
  3. IconData? doneIcon,
  4. IconData? backIcon,
  5. Color? rotateIconColor,
  6. double? scaleSliderMinValue,
  7. double? scaleSliderMaxValue,
  8. int? scaleSliderDivisions,
})

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,
  );
}