getAPNSToken method

  1. @override
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

@override
Future<String?> getAPNSToken() async {
  return null;
}