ApiServiceException constructor

ApiServiceException(
  1. String message,
  2. int? statusCode,
  3. JSON? data
)

Creates a new ApiServiceException with the given message, statusCode and data.

Implementation

ApiServiceException(this.message, this.statusCode, this.data);