update method

  1. @action
void update(
  1. T value, {
  2. bool force = false,
})

Implementation

@action
void update(T value, {bool force = false}) {
  this.internalTracked = this.internalTracked.updated(value, force: force);
}