RipplesRF constructor

const RipplesRF({
  1. Key? key,
  2. double? size = 90.0,
  3. Color? color = Colors.pink,
  4. VoidCallback? onPressed,
  5. @required Widget? child,
})

Implementation

const RipplesRF({
  Key? key,
  this.size = 90.0,
  this.color = Colors.pink,
  this.onPressed,
  @required this.child,
}) : super(key: key);