owner method

LiveScene<Data, Loading, Error> owner(
  1. LifeCycleOwner lifeCycleOwner
)

Implementation

LiveScene<Data, Loading, Error> owner(LifeCycleOwner lifeCycleOwner) {
  data.owner(lifeCycleOwner);
  loading.owner(lifeCycleOwner);
  error.owner(lifeCycleOwner);
  return this;
}