clearAllFiles method

  1. @override
Future<bool?> clearAllFiles()
override

Implementation

@override
Future<bool?> clearAllFiles() async {
  try {
    final result =
        await methodChannel.invokeMethod<bool>(METHOD_CLEAR_ALL_FILES);
    return result;
  } on PlatformException catch (e) {
    throw _libException(e);
  }
}