fixes: form data & curl

This commit is contained in:
Ankit Mahato
2024-03-17 00:44:10 +05:30
parent 09c572c290
commit 9f8a745fb4
4 changed files with 18 additions and 12 deletions

View File

@ -50,7 +50,7 @@ String getShortPath(String path) {
String getFilenameFromPath(String path) {
var f = p.split(path);
return f.last;
return f.lastOrNull ?? "";
}
String getTempFileName() {