@@ -26,7 +26,7 @@ public interface DynamicFeatureManager {
2626 * download, loadAssets and loadDartLibrary should be called to complete the dynamic feature load
2727 * process.
2828 */
29- public abstract void downloadFeature ( String moduleName , int loadingUnitId );
29+ public abstract void downloadDynamicFeature ( int loadingUnitId );
3030
3131 /**
3232 * Extract and load any assets and resources from the module for use by Flutter.
@@ -36,7 +36,7 @@ public interface DynamicFeatureManager {
3636 *
3737 * <p>Depending on the structure of the feature module, there may or may not be assets to extract.
3838 */
39- public abstract void loadAssets (String moduleName , int loadingUnitId );
39+ public abstract void loadAssets (int loadingUnitId );
4040
4141 /**
4242 * Load the .so shared library file into the Dart VM.
@@ -45,8 +45,8 @@ public interface DynamicFeatureManager {
4545 * considered finished loading, and the dart future completes. Developers are expected to begin
4646 * using symbols and assets from the feature module after completion.
4747 */
48- public abstract void loadDartLibrary (String moduleName , int loadingUnitId );
48+ public abstract void loadDartLibrary (int loadingUnitId );
4949
5050 /** Uninstall the specified feature module. */
51- public abstract void uninstallFeature (String moduleName , int loadingUnitId );
51+ public abstract void uninstallFeature (int loadingUnitId );
5252}
0 commit comments