Files
GSFV2/gsf/lib/view_model/common_functions.dart
2024-04-10 12:51:20 +05:30

5 lines
131 B
Dart

String correctImgUrl(String raw) {
var x = raw.split("/").last;
return "https://thegsf.co/public/uploads/profile_images/$x";
}