registerForPushNotifications method
Registers device for push notifications
Implementation
Future<String> registerForPushNotifications() async {
String token = await _channel.invokeMethod('registerForPushNotifications');
return token;
}
Registers device for push notifications
Future<String> registerForPushNotifications() async {
String token = await _channel.invokeMethod('registerForPushNotifications');
return token;
}