MacOSFlutterLocalNotificationsPlugin class
macOS implementation of the local notifications plugin.
- Inheritance
- Object
- PlatformInterface
- FlutterLocalNotificationsPlatform
- MacOSFlutterLocalNotificationsPlugin
Constructors
Properties
- hashCode → int
-
The hash code for this object. [...]
read-only, inherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
Methods
-
cancel(
int id) → Future< void> -
Cancel/remove the notification with the specified id. [...]
inherited
-
cancelAll(
) → Future< void> -
Cancels/removes all notifications. This applies to notifications that have been scheduled and those that have already been presented.
inherited
-
getNotificationAppLaunchDetails(
) → Future< NotificationAppLaunchDetails> -
Returns info on if a notification had been used to launch the application.
inherited
-
initialize(
MacOSInitializationSettings initializationSettings, {SelectNotificationCallback onSelectNotification}) → Future< bool> - Initializes the plugin. [...]
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed. [...]
inherited
-
pendingNotificationRequests(
) → Future< List< PendingNotificationRequest> > -
Returns a list of notifications pending to be delivered/shown
inherited
-
periodicallyShow(
int id, String title, String body, RepeatInterval repeatInterval, {MacOSNotificationDetails notificationDetails, String payload}) → Future< void> -
Periodically show a notification using the specified interval.
For example, specifying a hourly interval means the first time the
notification will be an hour after the method has been called and then
every hour after that.
override
-
requestPermissions(
{bool sound, bool alert, bool badge}) → Future< bool> - Requests the specified permission(s) from user and returns current permission status.
-
show(
int id, String title, String body, {MacOSNotificationDetails notificationDetails, String payload}) → Future< void> -
Show a notification with an optional payload that will be passed back to
the app when a notification is tapped on.
override
-
toString(
) → String -
Returns a string representation of this object.
inherited
-
zonedSchedule(
int id, String title, String body, TZDateTime scheduledDate, MacOSNotificationDetails notificationDetails, {String payload, DateTimeComponents matchDateTimeComponents}) → Future< void> - Schedules a notification to be shown at the specified date and time relative to a specific time zone.
Operators
-
operator ==(
Object other) → bool -
The equality operator. [...]
inherited