watch method

TModel watch(
  1. RefHasApp ref
)

Get TModel while monitoring it with the widget associated with ref in the same way as ref.app.model.

ref.app.modelと同じようにrefに関連するウィジェットで監視を行いつつTModelを取得します。

Implementation

TModel watch(RefHasApp ref) {
  return ref.app.model(this);
}