trackEntrypoint method

Future<void> trackEntrypoint(
  1. String entrypoint
)

Initializes a MetadataProvider for the application located at the provided entrypoint.

Implementation

Future<void> trackEntrypoint(String entrypoint) {
  final metadataProvider = createProvider(entrypoint, _assetReader);
  _providers[metadataProvider.entrypoint] = metadataProvider;
  // Returns a Future so that the asynchronous g3-implementation can override
  // this method:
  return Future.value();
}