ErrorPage constructor

const ErrorPage({
  1. dynamic key,
  2. required dynamic appAttributes,
  3. required dynamic footer,
})

Implementation

const ErrorPage({
  super.key,
  required this.appAttributes,
  required this.footer,
});