PageError.notFound constructor

const PageError.notFound([
  1. String message = 'Page not found',
  2. List<Cookie> cookies = const []
])

Creates a 404 Not Found error.

Implementation

const PageError.notFound([
  String message = 'Page not found',
  List<Cookie> cookies = const [],
]) : this(message, statusCode: 404, cookies: cookies);