handlePushNotification method
Handles incoming push notification.
message
- Incoming push notification payload
Throws VIException, if message
is null.
Errors:
- VIClientError.ERROR_INVALID_ARGUMENTS - If
message
is null.
Implementation
Future<void> handlePushNotification(Map<String, dynamic> message) async {
await _channel.invokeMethod('Client.handlePushNotification', message);
}