DropletAnimation constructor

const DropletAnimation({
  1. Key? key,
  2. Widget? child,
  3. double? verticalDistance = 60,
  4. Duration duration = const Duration(seconds: 3),
  5. double? width = 10,
  6. double? height = 10,
})

Constructor for the DropletAnimation widget.

Implementation

const DropletAnimation({
  super.key,
  this.child,
  this.verticalDistance = 60,
  this.duration = const Duration(seconds: 3),
  this.width = 10,
  this.height = 10,
});