instance property

FlutterDavoicePlatform get instance

The default instance of FlutterDavoicePlatform.

Implementation

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

Sets the active platform implementation.

Implementation

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