shareToSMS method

Future<bool> shareToSMS({
  1. required List<String> recipients,
  2. String? message,
})

Sends an SMS directly to specified recipients.

Implementation

Future<bool> shareToSMS({
  required List<String> recipients,
  String? message,
}) {
  throw UnimplementedError('shareToSMS() has not been implemented.');
}