setLatitude method

Future<void> setLatitude(
  1. double latitude
)

Implementation

Future<void> setLatitude(double latitude) async {
  return kMethodChannel.invokeMethod(
    'android.location.Location::setLatitude',
    {'__this__': this, 'latitude': latitude},
  );
}