loadManifest method

Future<void> loadManifest(
  1. Map<String, dynamic> manifestJson
)

Load and apply the module manifest.

Implementation

Future<void> loadManifest(Map<String, dynamic> manifestJson) async {
  _manifest = NiceModuleManifest.fromJson(manifestJson);
}