applyOnce method

LiveData<T> applyOnce(
  1. void apply(
    1. LiveData<T> liveData
    )
)

Implementation

LiveData<T> applyOnce(void Function(LiveData<T> liveData) apply) {
  apply(this);
  return this;
}