getInstance static method

Future<TerraNotification> getInstance(
  1. String appName
)

Implementation

static Future<TerraNotification> getInstance(String appName) async {
  if (_instances[appName] == null) {
    _instances[appName] = await _createInstance(appName);
  }
  return _instances[appName]!;
}