cleanup static method

Future<String?> cleanup()

Implementation

static Future<String?> cleanup() async {
  final String? res = await _channel.invokeMethod('cleanup');
  return res;
}