GameProperty constructor

const GameProperty({
  1. String description = '',
  2. bool hasThumbnail = false,
  3. int? maxPlayers,
  4. int currentPlayers = 0,
  5. Map<String, SignatureMetadata> packsSignature = const {},
})

Implementation

const GameProperty({
  this.description = '',
  this.hasThumbnail = false,
  this.maxPlayers,
  this.currentPlayers = 0,
  this.packsSignature = const {},
});