cleanUp method

  1. @override
Future<void> cleanUp()

Implementation

@override
Future<void> cleanUp() async {
  try {
    await _channel.invokeMethod('cleanUp');
  } on Exception catch (e) {
    throw _mapException(e);
  }
}