EasyWallpaperApp constructor

const EasyWallpaperApp({
  1. Key? key,
  2. required Map<String, dynamic> wallpaperUrls,
  3. required String title,
  4. String? leadingTitle,
  5. String? bgImage,
  6. EventActionCallback? onTapEvent,
  7. Future<bool> onSetOrDownloadWallpaper(
    1. BuildContext
    )?,
  8. PlacementBuilder? placementBuilder,
  9. bool isTrendingEnabled = true,
  10. bool isCacheEnabled = true,
})

Implementation

const EasyWallpaperApp({
  Key? key,
  required this.wallpaperUrls,
  required this.title,
  this.leadingTitle,
  this.bgImage,
  this.onTapEvent,
  this.onSetOrDownloadWallpaper,
  this.placementBuilder,
  this.isTrendingEnabled = true,
  this.isCacheEnabled = true,
}) : super(key: key);