sendSMS method

Future sendSMS(
  1. String address,
  2. String body
)

Implementation

Future sendSMS(String address, String body) async {
  final _body = Uri.encodeComponent(body);
  return launch('sms:$address${separator}body=$_body');
}