instance property

The default instance of NsFileCoordinatorUtilPlatform to use.

Defaults to MethodChannelNsFileCoordinatorUtil.

Implementation

static NsFileCoordinatorUtilPlatform get instance => _instance;
void instance=(NsFileCoordinatorUtilPlatform instance)

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

Implementation

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