sms_retriever_api

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

sms retriever api

sms_retriever_api #
A Flutter plugin for Android automatic SMS verification using Google’s SMS retriever API . Currently supports on only Android.
Getting Started #
To use this plugin, add sms_retriever_api as a dependency in your pubspec.yaml file.
Example #
SmsRetrieverApi.getAppSignature().then((signature){

print(signature); // use it in sms body.
return SmsRetrieverApi.startListening();}).then((x){
String smsCode = x; // otp code (digit only)
print("sms - $smsCode");

//stop listening for sms
SmsRetrieverApi.stopListening();

}).catchError((_){
print("sms error");
});
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.