deleteDisputeEvidence method
Removes specified evidence from a dispute.
Square does not send the bank any evidence that is removed. Also, you cannot remove evidence after submitting it to the bank using SubmitEvidence
Implementation
Future<bool> deleteDisputeEvidence({
required String disputeId,
required String evidenceId,
String? authToken,
}) async {
authToken ??= authenticationService.getCachedToken()?.accessToken;
Map<String, String> headers = {
"Authorization": "Bearer ${authToken ?? ""}",
'Content-Type': 'application/json; charset=UTF-8',
'Accept': 'application/json',
};
Uri endpoint = Uri.https(
baseUrl, "/v2/disputes/$disputeId/evidence/$evidenceId");
//print (endpoint.toString());
var response = await
http.delete(endpoint, headers: headers);
if (response.statusCode == 200) {
print (jsonDecode(response.body));
return true;
}
else {
print (response.body);
throw PaymentException(statusCode: response.statusCode, message: DisputeEvidenceResponse.fromJson(jsonDecode(response.body)).errors?[0].detail?.toString());
}
}