then<T> method

C then<T>(
  1. C runner(
    1. LiveData<P> value
    )
)

Implementation

C then<T>(C Function(LiveData<P> value) runner) {
  return runner(this);
}