getAPNSToken method

Future<String?> getAPNSToken()

On iOS & MacOS, it is possible to get the users APNs token. This may be required if you want to send messages to your iOS devices without using the FCM service.

Implementation

Future<String?> getAPNSToken() {
  throw UnimplementedError('getAPNSToken() is not implemented');
}