MinecraftProcessInfo constructor
MinecraftProcessInfo({
- required int pid,
- required String versionId,
- required Process process,
- 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,
});