updateProgress method

void updateProgress(
  1. double value
)

Manually adjusts the underlying fabric displacement timeline coordinates.

Automatically constrains structural overflows to valid bounds, and notifies listening render contexts to trigger instant repaints.

Implementation

void updateProgress(double value) {
  _progress = value.clamp(0.0, 1.0);
  notifyListeners();
}