updateAll method

void updateAll({
  1. bool force = false,
})

Implementation

void updateAll({bool force = false}) {
  if (force) {
    _target!.clear();
    _target!.length = _source.length;
  }
  for (int i = 0; i < length; i++) {
    this[i];
  }
}