setBearing method

Future<void> setBearing(
  1. double bearing
)

Implementation

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