NotificationData class
Notification data class as an interface between native callback data classes and Flutter dart code. When a notification event happens (like Receive), callbacks will hold instances of this class.
Constructors
-
NotificationData.create(String? _title, String? _content, String? _bigTitle, String? _bigContent, String? _summary, String? _imageUrl, String? _iconUrl, dynamic _customContent, List<
NotificationButtonData> ? _buttons, NotificationButtonData? _clickedButton)
Properties
- bigContent → dynamic
-
no setter
- bigTitle → dynamic
-
no setter
-
no setter
- clickedButton → dynamic
-
no setter
- content → dynamic
-
no setter
- customContent → dynamic
-
no setter
- hashCode → int
-
The hash code for this object.
no setterinherited
- iconUrl → dynamic
-
no setter
- imageUrl → dynamic
-
no setter
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- summary → dynamic
-
no setter
- title → dynamic
-
no setter
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
fromDynamic(
dynamic data) → NotificationData?