getlockTriggerState method
Gets the state of the trigger lock mechanism.
Returns a Future with a boolean indicating the state of the trigger lock mechanism.
Implementation
@override
Future<bool?> getlockTriggerState() async {
final scanOutputMode =
await methodChannel.invokeMethod<bool>('getlockTriggerState');
return scanOutputMode;
}