shouldShowLabel method
Implementation
bool shouldShowLabel() {
ensemble.FormState? formState = EnsembleForm.of(context);
if (formState != null) {
return formState.widget.shouldFormFieldShowLabel;
}
return true;
}
bool shouldShowLabel() {
ensemble.FormState? formState = EnsembleForm.of(context);
if (formState != null) {
return formState.widget.shouldFormFieldShowLabel;
}
return true;
}