registerPushNotificationToken method Null safety
- String token
Implementation
static Future<void> registerPushNotificationToken(String token) async {
return await _channel.invokeMethod('registerPushNotificationToken',<String, dynamic>{
'token': token
});
}