FCMNotificationClickListener constructor

const FCMNotificationClickListener(
  1. {Key key,
  2. @required Widget child,
  3. @required dynamic onNotificationClick(
    1. FCMNotification notification,
    2. VoidCallback setState
    )}
)

Implementation

const FCMNotificationClickListener(
    {Key key, @required this.child, @required this.onNotificationClick})
    : super(key: key);