LanProperty constructor

const LanProperty({
  1. int port = kDefaultPort,
  2. int currentPlayers = 0,
  3. int? maxPlayers,
  4. String description = '',
  5. Map<String, FileMetadata> packsSignature = const {},
})

Implementation

const LanProperty({
  this.port = kDefaultPort,
  super.currentPlayers,
  super.maxPlayers,
  super.description,
  super.packsSignature,
});