setAuthorizationOptions static method
Defines the authorization options used when requesting push notification permissions.
Note: This method is only supported on iOS.
options: The authorization options to be set.
Implementation
static Future<void> setAuthorizationOptions(List<String> options) async {
if (Platform.isIOS) {
await _channel.invokeMapMethod('setAuthorizationOptions', options);
}
}