sendUssd method
Implementation
Future<UssdResponse> sendUssd(String ussdCode) async {
final permissionGranted = await _requestPermissions();
if (!permissionGranted) {
throw Exception(
'Phone permission not granted. Please allow the permission in settings.');
}
return UssdFlutterPackage.sendUssd(ussdCode);
}