WallPaperSettings constructor

const WallPaperSettings({
  1. required bool blur,
  2. required bool motion,
  3. int? backgroundColor,
  4. int? secondBackgroundColor,
  5. int? thirdBackgroundColor,
  6. int? fourthBackgroundColor,
  7. int? intensity,
  8. int? rotation,
  9. String? emoticon,
})

Wall Paper Settings constructor.

Implementation

const WallPaperSettings({
  required this.blur,
  required this.motion,
  this.backgroundColor,
  this.secondBackgroundColor,
  this.thirdBackgroundColor,
  this.fourthBackgroundColor,
  this.intensity,
  this.rotation,
  this.emoticon,
}) : super._();