removePassword method
Remove the user password and owner permission password set in the document, and perform an incremental save.
example:
bool result = await document.removePassword();
Implementation
Future<bool> removePassword() async {
try {
return await _channel.invokeMethod('remove_password');
} on PlatformException catch (e) {
debugPrint(e.message);
return false;
}
}