BounceCircleAvatar constructor

const BounceCircleAvatar({
  1. required VoidCallback onPressed,
  2. Widget? child,
  3. double radius = BouncingWidgetSize.TINY,
  4. double widthFactor = 1.3,
  5. bool isScrollable = false,
  6. Color backgroundColor = Colors.transparent,
  7. ImageProvider<Object>? backgroundImage,
  8. double scaleFactor = 1,
  9. Duration duration = const Duration(milliseconds: 200),
  10. bool canReverse = false,
  11. Key? key,
})

Implementation

const BounceCircleAvatar({
  required this.onPressed,
  this.child,
  this.radius = BouncingWidgetSize.TINY,
  this.widthFactor = 1.3,
  this.isScrollable = false,
  this.backgroundColor = Colors.transparent,
  this.backgroundImage,
  this.scaleFactor = 1,
  this.duration = const Duration(milliseconds: 200),
  this.canReverse = false,
  Key? key,
}) : super(key: key);