FaradayNotificationListener constructor

const FaradayNotificationListener(
  1. List<String> names, {
  2. Key? key,
  3. required NotificationReceivedCallback onNotification,
  4. required Widget child,
})

Implementation

const FaradayNotificationListener(
  this.names, {
  Key? key,
  required this.onNotification,
  required this.child,
}) : super(key: key);