round method

  1. @override
LatLng round({
  1. int decimals = 6,
})
override

Implementation

@override
LatLng round({int decimals = 6}) => LatLng(
      s.round(_latitude, decimals: decimals),
      s.round(_longitude, decimals: decimals),
      s.round(_altitude, decimals: decimals),
    );