resetInstance static method
void
resetInstance()
Resets the singleton instance to null.
The next call to instance will create a new instance.
Implementation
static void resetInstance() {
_instance = null;
}
Resets the singleton instance to null.
The next call to instance will create a new instance.
static void resetInstance() {
_instance = null;
}