startFreeDrive method

Future<bool?> startFreeDrive({
  1. MapBoxOptions? options,
})

Starts Free Drive Mode

Implementation

Future<bool?> startFreeDrive({MapBoxOptions? options}) async {
  Map<String, dynamic>? args;
  if (options != null) args = options.toMap();
  return _methodChannel.invokeMethod('startFreeDrive', args);
}