isPasswordCorrect method
Implementation
@override
Future<bool> isPasswordCorrect(String path, String password) async {
return (await methodChannel.invokeMethod<bool>('isPasswordCorrect', {"path": path, "password": password}))!;
}
@override
Future<bool> isPasswordCorrect(String path, String password) async {
return (await methodChannel.invokeMethod<bool>('isPasswordCorrect', {"path": path, "password": password}))!;
}