This commit is contained in:
Hamza-Ayed
2024-06-08 02:12:15 +03:00
parent 8864261523
commit ac84011102
13 changed files with 128 additions and 665 deletions

View File

@@ -2623,9 +2623,10 @@ class MapPassengerController extends GetxController {
if (jsonDecode(res)['message']['rating'] == null) {
passengerRate = 5;
} else {
passengerRate =
double.parse(jsonDecode(res)['message']['rating'].toString());
passengerRate = jsonDecode(res)['message']['rating'];
}
} else {
passengerRate = 5;
}
}