checkOwnerPassword method
Whether the owner password is correct.
example:
var isCorrect = await document.checkOwnerPassword('password');
Implementation
Future<bool> checkOwnerPassword(String password) async {
return await _channel
.invokeMethod('check_owner_password', {'password': password});
}