clear static method
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;
}
}