instance property

Implementation

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

Implementation

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