added getCode function

This commit is contained in:
Aditya Mayukh Som
2024-03-21 18:03:45 +05:30
parent a6b640102c
commit 9c4f7ef56b

View File

@ -70,4 +70,14 @@ public class Main {
}\n
""";
String? getCode(RequestModel requestModel, String? boundary) {
try {
String result = '';
bool hasBody = false;
return result;
} catch (e) {
return null;
}
}
}