twilio_flutter icon indicating copy to clipboard operation
twilio_flutter copied to clipboard

I am trying to send sms in trial version but facing Unhandled Exception: Exception

Open irfansadiq786 opened this issue 2 years ago • 2 comments

I am using this plugin for sending sms in trial version. Whenever I try to send sms to different number other than I added in console, I got an exception which I am unable to handle, I tried wrapping with try, catch block of My code when sending sms so i can catch the exception but failed. Whenever I call twilioFlutter.sendSMS method I got an exception and my app crashes. Here is my Code: try { twilioFlutter.sendSMS( toNumber: phoneNumber, messageBody: 'Irfan Sadiq is sending message and your code is $otp'); } catch (e) { ScaffoldMessenger.of(context) .showSnackBar(const SnackBar(content: Text('Something went wrong'))); } Any help, fixes will be highly appreciated. Thanks

irfansadiq786 avatar Apr 22 '22 07:04 irfansadiq786