instance property

VideoThumbKitPlatform get instance

The default instance of VideoThumbKitPlatform to use.

Defaults to MethodChannelVideoThumbKit.

Implementation

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

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

Implementation

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