PaPacket constructor

PaPacket({
  1. required String ident,
  2. required String password,
})

PaPacket is authentication packet. Only used over TCP connections.

Implementation

PaPacket({
  required this.ident,
  required this.password,
});