read method

TController read(
  1. AppRef ref
)

Get TController stored in ref in the same way as ref.app.controller.

ref.app.controllerと同じようにrefに格納されているTControllerを取得します。

Implementation

TController read(AppRef ref) {
  return ref.controller(this);
}