round method

GeoLatLng round({
  1. int decimals = 6,
})

Implementation

GeoLatLng round({ final int decimals: 6 })
    => new GeoLatLng(_round(latitude,decimals: decimals), _round(longitude,decimals: decimals));