sendSms method

Future<String> sendSms(
  1. String phoneNumber,
  2. String message,
  3. int simSlot
)

Sends an SMS message to the specified phoneNumber.

Implementation

Future<String> sendSms(String phoneNumber, String message, int simSlot) {
  throw UnimplementedError('sendSms() has not been implemented.');
}