primary property

You can retrieve the RemoteNotificationMasamuneAdapter first given by MasamuneAdapterScope.

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

Implementation

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