instance property

Imagepickerv3Platform get instance

The default instance of Imagepickerv3Platform to use.

Defaults to MethodChannelImagepickerv3.

Implementation

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

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

Implementation

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