noGgRouterDelegateFoundError constant

String const noGgRouterDelegateFoundError

This error message is thrown when you forget to instaniate a GgRouterDelegate before instantiating a GgRouter.

Implementation

static const noGgRouterDelegateFoundError =
    'Did not find an instance of GgRouterDelegate.\n'
    'Please wrap your GgRouter into a MaterialApp.router(...) and '
    'assign an instance of GgRouterDelegate to "routerDelegate".\n'
    'When testing, it is sufficient to wrap the GgRouter under test into '
    'another GgRouter.root instance.\n'
    'For more details look into "gg_router/example/main.dart".';