instance property

SmsPlatform get instance

The default instance of SmsPlatform to use.

Defaults to MethodChannelSms.

Implementation

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

Platform-specific implementations should set this with their own platform-specific class that extends SmsPlatform when they register themselves.

Implementation

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