try catch block for error handling

This commit is contained in:
adityamayukhsom
2024-03-28 03:57:46 +05:30
parent 5774db422f
commit 3b93bb3f86

View File

@ -81,5 +81,10 @@ puts "Response Body: #{response.body}"
RequestModel requestModel, {
String? boundary,
}) {
try {
String result = "";
} catch (e) {
return null;
}
}
}