checkOwnerUnlocked method

Future<bool> checkOwnerUnlocked()

Check if owner permissions are unlocked

example:

var isUnlocked = await document.checkOwnerUnlocked();

Implementation

Future<bool> checkOwnerUnlocked() async {
  return await _channel.invokeMethod('check_owner_unlocked');
}