Telephony
Telephony copied to clipboard
How can i notify When Message is Delivered?
final SmsSendStatusListener listener = (SendStatus status) { if (status == SendStatus.SENT) { print("SMS is sent!"); } else if (status == SendStatus.DELIVERED) { print("SMS livré."); } };