Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR DART

how to send sms in flutter

// if you couldn't work with flutter_sms, add telephony package in pubspec.yaml
final Telephony telephony = Telephony.instance;

// this method does not need any permission
telephony.sendSmsByDefaultApp(
    to: 'target phone number',
    message: 'message'
);

// worked for me.
 
PREVIOUS NEXT
Tagged: #send #sms #flutter
ADD COMMENT
Topic
Name
2+9 =