lockRelease method
Perform a lock release
Implementation
void lockRelease(
String name, {
required Function perform,
bool shouldSetState = true,
}) {
if (state == null) return;
StateAction.lockRelease(
state!,
name,
perform: perform,
shouldSetState: shouldSetState,
);
}