Ref<T> constructor

Ref<T>(
  1. T data
)

Implementation

Ref(T data) {
  this._data = data;
}