clear static method
void
clear()
Initialize the data.
Implementation
static void clear() {
if (!isInitialized) {
debugPrint(
"It has not been initialized. Please initialize it by executing [initialize()].");
return;
}
_preferences?.clear();
}