instance property

Gets the current instance of AppSyncPlatformInterface.

Implementation

static AppSyncPlatformInterface get instance => _instance;
set instance (AppSyncPlatformInterface instance)

Sets the current instance of AppSyncPlatformInterface.

Implementation

static set instance(AppSyncPlatformInterface instance) {
  PlatformInterface.verifyToken(instance, _token);
  _instance = instance;
}