sharedInstance property

SDKNativeEngine? sharedInstance

Shared instance of this SDK engine that can be accessed by any HERE SDK module as the default engine. This is automatically set as a part of the SDK initialization process. Gets the shared instance of this SDK engine that can be accessed by any HERE SDK module as the default engine.

Implementation

static SDKNativeEngine? get sharedInstance => $prototype.sharedInstance;
void sharedInstance=(SDKNativeEngine? value)

Shared instance of this SDK engine that can be accessed by any HERE SDK module as the default engine. This is automatically set as a part of the SDK initialization process. Sets the shared instance of this SDK engine that can be accessed by any HERE SDK module as the default engine.

Implementation

static set sharedInstance(SDKNativeEngine? value) { $prototype.sharedInstance = value; }