openPermissionSettings method
Opens the notification settings page for the user to manually configure.
Implementation
Future<NotificationFailure?> openPermissionSettings() async {
try {
return await _repository.openNotificationSettings();
} catch (e, stackTrace) {
return NotificationFailure.permission(
details: e.toString(),
stackTrace: stackTrace,
);
}
}