set method

Ref<T> set(
  1. T? data
)

Implementation

Ref<T> set(T? data) {
  notifyListeners();
  return this..get = data;
}