boolean method
Creates a checkbox that can be toggled on and off
Implementation
bool boolean({
required String label,
String? description,
bool initialValue = false,
}) {
return onKnobAdded(
BooleanKnob(
label: label,
description: description,
initialValue: initialValue,
),
)!;
}