composeSendSms static method
Implementation
static void composeSendSms(String phone) async {
String url = 'sms:${phone.trim()}';
if ((await canLaunch(url) && validatePhone(phone))) {
await launch(url);
}
}
static void composeSendSms(String phone) async {
String url = 'sms:${phone.trim()}';
if ((await canLaunch(url) && validatePhone(phone))) {
await launch(url);
}
}