handleNotificationClick method

Future<bool> handleNotificationClick(
  1. Map notification
)

This function handles a notification click and returns a boolean value.

Args: notification (Map): The parameter "notification" is a Map object that contains the data of a notification that was received by the app.

Implementation

Future<bool> handleNotificationClick(Map notification) async {
  return await _methods.handleNotificationClick(notification);
}