bindText method

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

Binds the selected widget's text-like value to a DSL expression.

Implementation

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