From 419c068cc83b803536d5885cb0425bd5811304c8 Mon Sep 17 00:00:00 2001 From: Adarsh Balachandran <42461327+adarshbalu@users.noreply.github.com> Date: Fri, 6 Mar 2020 01:40:04 +0530 Subject: [PATCH] Updated readme with correct implementation Changed the error portion --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 52f28db..71eda2b 100644 --- a/README.md +++ b/README.md @@ -37,8 +37,7 @@ Create a function for sending messages. ``` dart void _sendSMS(String message, List recipents) async { - String _result = await FlutterSms - .sendSMS(message: message, recipients: recipents) + String _result = await sendSMS(message: message, recipients: recipents) .catchError((onError) { print(onError); });