getInstance static method
Implementation
static TerraApp getInstance([String name = defaultAppName]) {
final app = _terraApps[name];
if (app == null) {
throw Exception(
"Terra App $name is not initialized! Invoke TerraApp.initializeApp(...) first");
}
return app;
}