XfdnIconNotification constructor

const XfdnIconNotification({
  1. Key? key,
  2. required IconData iconData,
  3. required String text,
  4. Color? iconColor,
  5. EdgeInsets padding = const EdgeInsets.all(16),
  6. Color? backgroundColor,
})

Implementation

const XfdnIconNotification({
  super.key,
  required this.iconData,
  required this.text,
  this.iconColor,
  this.padding = const EdgeInsets.all(16),
  this.backgroundColor,
});