ApiError constructor

ApiError(
  1. String code,
  2. String message, [
  3. String? description,
  4. DateTime? dateTime,
  5. ApiError? innerError,
])

Constructor

Implementation

ApiError(this.code, this.message,
    [this.description, this.dateTime, this.innerError]);