instance property

MonacoEditorPlatform? get instance

Implementation

static MonacoEditorPlatform? get instance => _instance;
set instance (MonacoEditorPlatform? instance)

Implementation

static set instance(MonacoEditorPlatform? instance) {
  if (instance == null) return;
  PlatformInterface.verifyToken(instance, _token);
  _instance = instance;
}