NotFoundError constructor

const NotFoundError({
  1. required String url,
  2. required String method,
  3. required dynamic detail,
  4. required String suggestion,
})

Implementation

const NotFoundError({
  required super.url,
  required super.method,
  required super.detail,
  required super.suggestion,
}) : super(statusCode: 404);