NUIHttpStandardErrorResponse constructor

NUIHttpStandardErrorResponse({
  1. required String timestamp,
  2. required int status,
  3. required String error,
  4. required String message,
  5. String? path,
})

Implementation

NUIHttpStandardErrorResponse({
  required this.timestamp,
  required this.status,
  required this.error,
  required this.message,
  this.path});