CustomErrorResponse constructor

CustomErrorResponse({
  1. required int errorCode,
  2. int? errorCachingMinTTL,
  3. String? responseCode,
  4. String? responsePagePath,
})

Implementation

CustomErrorResponse({
  required this.errorCode,
  this.errorCachingMinTTL,
  this.responseCode,
  this.responsePagePath,
});