sms static method

Future<void> sms(
  1. String phone,
  2. String body
)

Implementation

static Future<void> sms(final String phone, final String body) async => launchURL("sms:$phone?body=$body");