ConnectionException constructor

ConnectionException({
  1. required FormatException formatException,
  2. required String responseStatus,
  3. required String responseBody,
})

Implementation

ConnectionException({
  required this.formatException,
  required this.responseStatus,
  required this.responseBody,
});