reset static method

Future<void> reset()

Clear all data and reset

Implementation

static Future<void> reset() async {
  instance.dispose();
  await SecureConfigManager.clearConfig();
  _instance = null;
}