26 lines
615 B
Dart
26 lines
615 B
Dart
import 'package:pinput/pinput.dart';
|
|
import 'package:smart_auth/smart_auth.dart';
|
|
|
|
class SmsRetrieverImpl implements SmsRetriever {
|
|
const SmsRetrieverImpl(this.smartAuth);
|
|
|
|
final SmartAuth smartAuth;
|
|
|
|
@override
|
|
Future<void> dispose() {
|
|
return smartAuth.removeUserConsentApiListener();
|
|
}
|
|
|
|
@override
|
|
Future<String?> getSmsCode() async {
|
|
final res = await smartAuth.getSmsWithUserConsentApi();
|
|
if (res.hasData && res.data != null && res.data!.sms.contains('هوشان')) {
|
|
return res.requireData.code!;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
@override
|
|
bool get listenForMultipleSms => true;
|
|
}
|