We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4c51f8 commit f951351Copy full SHA for f951351
data/src/main/java/com/stop/data/remote/model/nowlocation/BusInfo.kt
@@ -19,12 +19,12 @@ data class BusInfo(
19
val isRun: String,
20
) {
21
fun toRepositoryModel() = BusInfoRepositoryItem(
22
- isArrivedAtStation,
23
- sectionId,
24
- latitude,
25
- longitude,
26
- busId,
27
- busNumber,
28
- isRun
+ isArrivedAtStation = isArrivedAtStation,
+ sectionId = sectionId,
+ latitude = latitude,
+ longitude = longitude,
+ busId = busId,
+ busNumber = busNumber,
+ isRun = isRun,
29
)
30
}
0 commit comments