NorbixServerError constructor

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

Implementation

const NorbixServerError({
  required super.message,
  super.errors,
  super.body,
  super.code = 'NORBIX_SERVER_ERROR',
  super.status,
  super.details,
});