primary property

You can retrieve the AgoraMasamuneAdapter first given by MasamuneAdapterScope.

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

Implementation

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