FxNotificationIcon constructor

FxNotificationIcon({
  1. Key? key,
  2. VoidCallback? onPressed,
  3. Widget iconBuilder(
    1. double size
    )?,
  4. double? size,
  5. Offset offset = const Offset(0, 0),
  6. Color? iconColor,
  7. Color? backgroundColor,
  8. Color? foregroundColor,
})

Implementation

FxNotificationIcon({
  super.key,
  this.onPressed,
  this.iconBuilder,
  this.size,
  this.offset = const Offset(0, 0),
  this.iconColor,
  this.backgroundColor,
  this.foregroundColor,
});