copyWith method

BeautyFilters copyWith({
  1. double? smoothValue,
  2. double? whiteValue,
  3. double? thinFaceValue,
  4. double? bigEyeValue,
  5. double? lipstickValue,
  6. double? blusherValue,
})

Implementation

BeautyFilters copyWith({
  double? smoothValue,
  double? whiteValue,
  double? thinFaceValue,
  double? bigEyeValue,
  double? lipstickValue,
  double? blusherValue,
}) {
  return BeautyFilters(
    smoothValue: smoothValue ?? this.smoothValue,
    whiteValue: whiteValue ?? this.whiteValue,
    thinFaceValue: thinFaceValue ?? this.thinFaceValue,
    bigEyeValue: bigEyeValue ?? this.bigEyeValue,
    lipstickValue: lipstickValue ?? this.lipstickValue,
    blusherValue: blusherValue ?? this.blusherValue,
  );
}