overview method

Future<void> overview({
  1. MapOptions? options,
})

Implementation

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

  return _methodChannel.invokeMethod(MethodChannelEvent.overview, args);
}