FluffyAnimation constructor

const FluffyAnimation({
  1. Key? key,
  2. required Widget child,
  3. double moveAmount = 16,
  4. double durationMilliseconds = 5000,
  5. Duration delay = const Duration(milliseconds: 0),
  6. bool developerMode = false,
})

Implementation

const FluffyAnimation({
  Key? key,
  required this.child,
  this.moveAmount = 16,
  this.durationMilliseconds = 5000,
  this.delay = const Duration(milliseconds: 0),
  this.developerMode = false,
}) : super(key: key);