ButtonIconCircularComponent constructor

const ButtonIconCircularComponent({
  1. Color fillColor = Colors.transparent,
  2. required IconData iconData,
  3. Color iconColor = Colors.blue,
  4. Color outlineColor = Colors.transparent,
  5. Color notificationFillColor = Colors.red,
  6. int? notificationCount,
  7. Function? onPressed,
  8. double radius = 48.0,
  9. Key? key,
})

Implementation

const ButtonIconCircularComponent(
    {this.fillColor = Colors.transparent,
    required this.iconData,
    this.iconColor = Colors.blue,
    this.outlineColor = Colors.transparent,
    this.notificationFillColor = Colors.red,
    this.notificationCount,
    this.onPressed,
    this.radius = 48.0,
    Key? key})
    : super(key: key);