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