tick method

LiveData<T> tick({
  1. bool? verifyDataChange,
})

Implementation

LiveData<T> tick({bool? verifyDataChange}) {
  // value = _currentValue;
  _set(_currentValue, verifyDataChange ?? this.verifyDataChange);
  return this;
}