BaseNotFoundError constructor

const BaseNotFoundError({
  1. required String title,
  2. required int status,
  3. String? detail,
  4. String? instance,
  5. int? entityId,
  6. required String traceId,
})

Implementation

const BaseNotFoundError({
  required this.title,
  required this.status,
  this.detail,
  this.instance,
  this.entityId,
  required this.traceId,
});