Rafs
interface LocationManager { fun requestLocation(): Flow<Location> fun stopRequestingLocation() }
Richard
mohamed rejeb
interface LocationManager { fun requestLocation(onLocation: (Location) -> Unit) fun stopRequestingLocation() }
A modern programming language that makes developers happier.