ModuleIdentity constructor

ModuleIdentity({
  1. required String groupId,
  2. required String artifactId,
  3. required String version,
  4. required String path,
})

Creates a new ModuleIdentity.

groupId - The group identifier of the module (e.g., "net.fabricmc") artifactId - The artifact identifier of the module (e.g., "fabric-loader") version - The version of the module (e.g., "0.16.14") path - The path to the module file

Implementation

ModuleIdentity({
  required this.groupId,
  required this.artifactId,
  required this.version,
  required this.path,
});