Rafs
11/06/2024, 11:24 AMinterface LocationManager {
fun requestLocation(): Flow<Location>
fun stopRequestingLocation()
}
What type can i map this to, becase on the swift side, this is the type I am getting.
func requestLocation() -> any Kotlinx_coroutines_coreFlow {
}Richard
11/06/2024, 11:38 AMmohamed rejeb
11/06/2024, 11:40 AMinterface LocationManager {
fun requestLocation(onLocation: (Location) -> Unit)
fun stopRequestingLocation()
}
Rafs
11/06/2024, 11:41 AMRichard
11/06/2024, 11:42 AMRafs
11/06/2024, 11:52 AMRichard
11/06/2024, 12:01 PM