handlePushNotification method

Future<void> handlePushNotification(
  1. Map<String, dynamic> message
)

Handles incoming push notification.

message - Incoming push notification payload

Throws VIException, if message is null.

Errors:

Implementation

Future<void> handlePushNotification(Map<String, dynamic> message) async {
  await _channel.invokeMethod('Client.handlePushNotification', message);
}