verify static method

void verify(
  1. LoadBundleTaskSnapshotPlatform instance
)
override

Throws an AssertionError if instance does not extend LoadBundleTaskSnapshotPlatform.

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

Implementation

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