getAndroidAppSignature method
Optionally fetch the Android app signature for the SMS Retriever hash.
Implementation
Future<String?> getAndroidAppSignature() async {
try {
return await _channel.invokeMethod<String>('getAppSignature');
} catch (e, stackTrace) {
debugPrint("Error getting app signature: $e");
debugPrintStack(stackTrace: stackTrace);
return null;
}
}