MinecraftProcessInfo constructor

MinecraftProcessInfo({
  1. required int pid,
  2. required String versionId,
  3. required Process process,
  4. MinecraftAuth? auth,
})

Creates a new MinecraftProcessInfo instance.

pid - Process identifier versionId - Version of Minecraft process - Reference to the actual process auth - Optional authentication details

Implementation

MinecraftProcessInfo({
  required this.pid,
  required this.versionId,
  required this.process,
  this.auth,
});