clear static method

Future<bool> clear()

Clear all settings.

Implementation

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