primary property

You can retrieve the FunctionsAdapter first given by FunctionsAdapterScope.

最初にFunctionsAdapterScopeで与えたFunctionsAdapterを取得することができます。

Implementation

static FunctionsAdapter get primary {
  assert(
    _primary != null,
    "FunctionsAdapter is not set. Place [FunctionsAdapterScope] widget closer to the root.",
  );
  return _primary ?? const RuntimeFunctionsAdapter();
}