ApiException constructor

ApiException({
  1. required String message,
  2. int? statusCode,
  3. String? code,
})

Implementation

ApiException({
  required this.message,
  this.statusCode,
  this.code,
});