filterOnDidLoad method

  1. @protected
  2. @mustCallSuper
Future<T?> filterOnDidLoad(
  1. T? value
)

Callback called after loading.

If loaded is true, it will not be executed.

If value is passed and a modified version of it is returned, it becomes the value of DocumentBase.

ロード後に呼ばれるコールバック。

loadedtrueの場合は実行されません。

valueが渡されそれを加工したものを返すとそれがDocumentBasevalueとなります。

Implementation

@protected
@mustCallSuper
Future<T?> filterOnDidLoad(T? value) => Future.value(value);