ModuleIdentity constructor
ModuleIdentity({})
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,
});