resetBiometricChanged method
Supported for iOS only, do nothing when run on Android and return false always.
Implementation
@override
Future<bool> resetBiometricChanged() async {
if (Platform.isIOS) {
final result =
await methodChannel.invokeMethod<bool>('resetBiometricChanged', {});
return result ?? false;
}
return false;
}