Advertisement
Guest User

Untitled

a guest
Sep 15th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. class LocationLiveData(context: Context) : LiveData<LocationModel>() {
  2.  
  3. private fun setLocationData(location: Location) {
  4. value = LocationModel(
  5. longitude = location.longitude,
  6. latitude = location.latitude
  7. )
  8. }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement