primary property

You can retrieve the LocationMasamuneAdapter first given by MasamuneAdapterScope.

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

Implementation

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