GameEvent constructor

GameEvent({
  1. String? description,
  2. String? eventId,
  3. String? localeValue,
  4. String? thumbnailUri,
  5. String? name,
  6. Player? gamePlayer,
  7. int? value,
  8. bool? isVisible,
})

Implementation

GameEvent({
  this.description,
  this.eventId,
  this.localeValue,
  this.thumbnailUri,
  this.name,
  this.gamePlayer,
  this.value,
  this.isVisible,
});