NorbixError constructor

const NorbixError({
  1. required String message,
  2. String code = 'NORBIX_ERROR',
  3. int status = 0,
  4. Map<String, dynamic> details = const {},
})

Implementation

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