AppException constructor

AppException(
  1. int _code,
  2. String _message, {
  3. dynamic responseData,
})

Implementation

AppException(
    this._code,
    this._message,{ this.responseData}

    );