setUpdated method

dynamic setUpdated(
  1. StreamController? updated
)

Configures the stream controller for field updates.

updated is the stream controller that will receive notifications when this field's value or state changes.

Implementation

setUpdated(StreamController? updated) {
  this.updated = updated;
}