copyWith method

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

Implementation

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