presentAction static method

Future<void> presentAction(
  1. NotificareNotification notification,
  2. NotificareNotificationAction action
)

Implementation

static Future<void> presentAction(
  NotificareNotification notification,
  NotificareNotificationAction action,
) async {
  await _channel.invokeMethod('presentAction', {
    'notification': notification.toJson(),
    'action': action.toJson(),
  });
}