copyWith method

  1. @override
BackgroundTypeWallpaper copyWith({
  1. bool? isBlurred,
  2. bool? isMoving,
})
override

Implementation

@override
BackgroundTypeWallpaper copyWith({
  bool? isBlurred,
  bool? isMoving,
}) => BackgroundTypeWallpaper(
  isBlurred: isBlurred ?? this.isBlurred,
  isMoving: isMoving ?? this.isMoving,
);