instance property
RapierPhysicsPlatform
get
instance
The default instance of RapierPhysicsPlatform to use.
Defaults to MethodChannelRapierPhysics.
Implementation
static RapierPhysicsPlatform get instance => _instance;
set
instance
(RapierPhysicsPlatform instance)
Platform-specific implementations should set this with their own platform-specific class that extends RapierPhysicsPlatform when they register themselves.
Implementation
static set instance(RapierPhysicsPlatform instance) {
PlatformInterface.verifyToken(instance, _token);
_instance = instance;
}