Answers for "how to send sms in flutter"

0

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.
Posted by: Guest on April-26-2022

Code answers related to "Dart"

Browse Popular Code Answers by Language