fathony
callbackFlow {}
// Kotlin common interface Repository { fun location(): Flow<LatLng> }
// Kotlin android class AndroidRepository : Repository { override fun location(): Flow<LatLng> = callbackFlow { // some implementation } }
// Swift iOS class IosRepository : Repository { func location() -> // how to? }
hfhbd
A modern programming language that makes developers happier.