DuxtErrorPage constructor

const DuxtErrorPage({
  1. Key? key,
  2. int statusCode = 404,
  3. String? path,
  4. String? message,
})

Implementation

const DuxtErrorPage({
  super.key,
  this.statusCode = 404,
  this.path,
  this.message,
});