getInstance static method
Gets an existing Wingify instance previously created via init.
Implementation
static Wingify? getInstance(
{required int accountId, required String sdkKey}) {
final client = FmeClient.instances[FmeClient.instanceKey(accountId, sdkKey)];
return client is Wingify ? client : null;
}