notFound constant

BeamPage const notFound

A BeamPage to be the default for BeamerDelegate.notFoundPage.

Implementation

static const notFound = BeamPage(
  key: ValueKey('not-found'),
  title: 'Not found',
  child: Scaffold(body: Center(child: Text('Not found'))),
);