recenter method
Implementation
Future<void> recenter({MapOptions? options}) async {
Map<String, dynamic>? args;
if (options != null) args = options.toMap();
return _methodChannel.invokeMethod(MethodChannelEvent.recenter, args);
}
Future<void> recenter({MapOptions? options}) async {
Map<String, dynamic>? args;
if (options != null) args = options.toMap();
return _methodChannel.invokeMethod(MethodChannelEvent.recenter, args);
}