instance property

SmsSenderPlatform get instance

The default instance of SmsSenderPlatform to use.

Defaults to MethodChannelSmsSender.

Implementation

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

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

Implementation

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