NotificationButton constructor

NotificationButton({
  1. required String text,
  2. required String action,
  3. Color? backgroundColor,
  4. Color? textColor,
})

Implementation

NotificationButton({
  required this.text,
  required this.action,
  this.backgroundColor,
  this.textColor,
});