bindVisible method

void bindVisible(
  1. BrownfieldSelection selection,
  2. Object? value
)

Binds the selected widget's visibility to a boolean DSL expression.

Implementation

void bindVisible(BrownfieldSelection selection, Object? value) {
  _operations.add(
    _BindVisibleSpec(selection: selection, value: normalizeExpression(value)),
  );
}