ApiException<T> constructor

const ApiException<T>(
  1. int code,
  2. String? message, {
  3. T? body,
})

Implementation

const ApiException(this.code, this.message, {this.body})
  : innerException = null,
    stackTrace = null;