getInstance static method

AppDelegate getInstance({
  1. String? collectionName,
})

Returns the singleton instance of AppDelegate.

[collectionName] is an optional parameter for future use.

Implementation

static AppDelegate getInstance({String? collectionName}) {
  return _instance;
}