LiveData<T> constructor

LiveData<T>(
  1. T? value
)

Implementation

LiveData(T? value) {
  _value = value;
}