standardAppPlugin property

StandardAppPlugin get standardAppPlugin

Retrieves StandardAppPlugin from the App.

Implementation

StandardAppPlugin get standardAppPlugin {
  final tPlugin = getPlugin<StandardAppPlugin>();

  assert(
    tPlugin != null,
    'Could not find StandardApp. Was it removed from the plugins?',
  );

  return tPlugin!;
}