resetSingleton static method

void resetSingleton()

Reset the singleton instance completely This will create a new instance on the next factory call

Implementation

static void resetSingleton() {
  _instance?.dispose();
  _instance = null;
}