primary property

You can retrieve the CalendarMasamuneAdapter first given by MasamuneAdapterScope.

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

Implementation

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