verify static method

void verify(
  1. FieldValueFactoryPlatform instance
)
override

Throws an AssertionError if instance does not extend FieldValueFactoryPlatform.

This is used by the app-facing FieldValueFactory to ensure that the object in which it's going to delegate calls has been constructed properly.

Implementation

static void verify(FieldValueFactoryPlatform instance) {
  PlatformInterface.verify(instance, _token);
}