overrideInstance static method

void overrideInstance(
  1. FirefastStore customServices
)

Overrides the default singleton instance with a custom implementation.

This is particularly useful for testing where you might want to inject a mock or fake implementation.

Implementation

static void overrideInstance(FirefastStore customServices) {
  _instance = customServices;
}