NotificationProcessor class

Sets up, receives, and processes push notifications coming from Firebase cloud messaging.

When this widget is initialized, it will request notification permissions from the user's OS. It will also handle any foreground notifications, and will setup the callback for background notifications, using the provided callback functions.

This widget will also handle notification taps and convert them to notification actions for the app to handle.

Inheritance

Constructors

NotificationProcessor({Key? key, JsonToActionConverter jsonToActionConverter = defaultJsonToActionConverter, required ActionCallback onAction, required RemoteMessageHandler foregroundMessageHandler, required RemoteMessageHandler backgroundMessageHandler, required Widget child})
const

Properties

backgroundMessageHandler RemoteMessageHandler
final
child Widget
final
foregroundMessageHandler RemoteMessageHandler
final
hashCode int
The hash code for this object.
no setterinherited
jsonToActionConverter JsonToActionConverter
final
key Key?
Controls how one widget replaces another widget in the tree.
finalinherited
onAction ActionCallback
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

createElement() ConsumerStatefulElement
Creates a StatefulElement to manage this widget's location in the tree.
inherited
createState() ConsumerState<NotificationProcessor>
Creates the mutable state for this widget at a given location in the tree.
override
debugDescribeChildren() List<DiagnosticsNode>
Returns a list of DiagnosticsNode objects describing this node's children.
inherited
debugFillProperties(DiagnosticPropertiesBuilder properties) → void
Add additional properties associated with the node.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toDiagnosticsNode({String? name, DiagnosticsTreeStyle? style}) DiagnosticsNode
Returns a debug representation of the object that is used by debugging tools and by DiagnosticsNode.toStringDeep.
inherited
toString({DiagnosticLevel minLevel = DiagnosticLevel.info}) String
A string representation of this object.
inherited
toStringDeep({String prefixLineOne = '', String? prefixOtherLines, DiagnosticLevel minLevel = DiagnosticLevel.debug}) String
Returns a string representation of this node and its descendants.
inherited
toStringShallow({String joiner = ', ', DiagnosticLevel minLevel = DiagnosticLevel.debug}) String
Returns a one-line detailed description of the object.
inherited
toStringShort() String
A short, textual description of this widget.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

defaultJsonToActionConverter(Map<String, dynamic> json) AppNotificationAction?
Default action converter that can convert built-in shared actions such as NavToDeviceAction
of(BuildContext context) NotificationProcessorState?
The state of the closest ancestor notification processor.