deleteWhenError static method

Future<bool?> deleteWhenError(
  1. List<String> paths
)

Implementation

static Future<bool?> deleteWhenError(List<String> paths) async {
  try {
    var result = await _channel.invokeMethod(
      'deleteWhenError',
      <String, List<String>>{'paths': paths},
    );
    return result;
  } catch (e) {
    throw Exception(e);
  }
}