FetchDataException constructor

FetchDataException(
  1. String message, {
  2. String? body,
  3. int? status,
})

Implementation

FetchDataException(String message, {String? body, int? status})
  : super(message, "Internal Server Error: ", body: body, status: status);