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