clear static method

Future<bool> clear()

Implementation

static Future<bool> clear() async {
  try {
    if (_ii._backup == null) return false;
    await _ii._backup!.clean();
    _ii._props.clear();
    return true;
  } catch (msg) {
    _log(msg);
    return false;
  }
}