setSpeed method

Future<void> setSpeed(
  1. double speed
)

Implementation

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