Last active
May 10, 2021 13:38
-
-
Save manuelvicnt/be5b7798b50222a8af79311b5fff9fc2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class LocationRepository( | |
private val locationDataSource: LocationDataSource, | |
private val externalScope: CoroutineScope | |
) { | |
val locations: Flow<Location> = | |
locationDataSource.locationsSource.stateIn(externalScope, WhileSubscribed(), EmptyLocation) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment