stateMachineGetBooleanInput method
Implementation
bool? stateMachineGetBooleanInput(String key) {
if (dotLottiePlayer != null && !isDisposed) {
try {
final player = dotLottiePlayer as JSObject;
final method = player['stateMachineGetBooleanInput'.toJS] as JSFunction;
final result = method.callAsFunction(player, key.toJS);
return (result as JSBoolean?)?.toDart;
} catch (e) {
return null;
}
}
return null;
}