ActionCircleButton constructor

const ActionCircleButton({
  1. Key? key,
  2. VoidCallback? onTap,
  3. IconData icon = Icons.delete,
  4. double radius = 25.0,
  5. Color? backgroundColor = Colors.grey,
  6. Color? foregroundColor = Colors.black,
  7. bool isVisible = true,
  8. EdgeInsetsGeometry padding = const EdgeInsets.all(6.0),
  9. Widget? child,
})

Implementation

const ActionCircleButton({
  Key? key,
  this.onTap,
  this.icon = Icons.delete,
  this.radius = 25.0,
  this.backgroundColor = Colors.grey,
  this.foregroundColor = Colors.black,
  this.isVisible = true,
  this.padding = const EdgeInsets.all(6.0),
  this.child,
}) : super(key: key);