stateMachineSetBooleanInput method
Implementation
@override
Future<bool?> stateMachineSetBooleanInput(String key, bool value) async {
return await methodChannel.invokeMethod<bool>(
'stateMachineSetBooleanInput',
{'key': key, 'value': value},
);
}