overrideInstance static method
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.
customServices
: The custom FirefastStore instance to use.
Implementation
static void overrideInstance(FirefastStore customServices) {
_instance = customServices;
}