twilio_flutter icon indicating copy to clipboard operation
twilio_flutter copied to clipboard

Check response after sending SMS

Open SilenceCodder opened this issue 3 years ago • 2 comments

Am trying to check a response either failed or success but It's only displaying in the console. but I can't display it on the UI.

twilioFlutter.sendSMS(toNumber: '+2349057463831', messageBody: AppString.smsBody, ).then((value){ print('Value $value'); //Doesnt display }).catchError((error){ print('Catch Error ${error.toString()}'); //Only display "Exception" });

SilenceCodder avatar Apr 17 '21 09:04 SilenceCodder