bindChange method

T bindChange()

Implementation

T bindChange() {
  if (context.owner?.debugBuilding ?? context.debugDoingBuild) {
    context.dependOnInheritedWidgetOfExactType<DependentManager>(
      aspect: BuildDependentExecutor<T>(this),
    );
  }
  return value;
}