NorbixError constructor

const NorbixError({
  1. required String message,
  2. String code = 'NORBIX_ERROR',
  3. int status = 0,
  4. Map<String, dynamic> details = const {},
  5. List<NorbixErrorItem> errors = const [],
  6. Object? body,
})

Implementation

const NorbixError({
  required this.message,
  this.code = 'NORBIX_ERROR',
  this.status = 0,
  this.details = const {},
  this.errors = const [],
  this.body,
});