sms_retriever
sms_retriever copied to clipboard
Future of startListening never resolved or rejected
When we call String smsCode = await SmsRetriever.startListening();
, startListening
return a Future<String>
, once SMS received it resolved
But if we call SmsRetriever.stopListening();
, assume the user enter the code via input and pages disposed, So the future of startListening
must be resolved with null or rejected with an exception
@lakhwinderdebut Can you please reply?