sendBulkSms abstract method

Future<Map<String, bool>> sendBulkSms({
  1. required List<String> phoneNumbers,
  2. required String message,
  3. String? countryCode,
})

Send SMS to multiple recipients

Implementation

Future<Map<String, bool>> sendBulkSms({
  required List<String> phoneNumbers,
  required String message,
  String? countryCode,
});