private void toggleSwitch(bool? visible = false)
{
if (visible.Value) toggleState(visible);
}
U
User 8661269
@User 8661269
Posts
-
It does what now?
private void toggleSwitch(bool? visible = false)
{
if (visible.Value) toggleState(visible);
}