shouldShowLabel method

bool shouldShowLabel()

Implementation

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