RipplesAnimation constructor

const RipplesAnimation({
  1. Key? key,
  2. double size = 80.0,
  3. Color color = Colors.red,
  4. bool? reverse = false,
  5. Widget? child,
})

Implementation

const RipplesAnimation({
  Key? key,
  this.size = 80.0,
  this.color = Colors.red,
  this.reverse = false,
  this.child,
}) : super(key: key);