APIError constructor

APIError({
  1. num? code,
  2. String? message,
})

Implementation

APIError({
  super.code,
  super.message,
});