BaseProblemError constructor

const BaseProblemError({
  1. String? type,
  2. required String title,
  3. required int status,
  4. String? traceId,
})

Implementation

const BaseProblemError({
  this.type,
  required this.title,
  required this.status,
  this.traceId,
});