loadBundle method

  1. @override
LoadBundleTaskPlatform loadBundle(
  1. Uint8List bundle
)

Loads a Firestore bundle into the local cache. Returns a LoadBundleTask which notifies callers with progress updates, and completion or error events.

Implementation

@override
LoadBundleTaskPlatform loadBundle(Uint8List bundle) {
  return LoadBundleTaskWeb(_delegate.loadBundle(bundle));
}