instance property

Current instance of FieldValueFactoryPlatform

Implementation

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

Sets the default instance of FieldValueFactoryPlatform which is used to build FieldValuePlatform items

Implementation

static set instance(FieldValueFactoryPlatform instance) {
  PlatformInterface.verify(instance, _token);
  _instance = instance;
}