Game constructor

Game({
  1. String? extra,
  2. int? client_id,
  3. int64? id,
  4. string? short_name,
  5. string? title,
  6. FormattedText? text,
  7. string? description,
  8. Photo? photo,
  9. Animation? animation,
})

Implementation

Game({
  super.extra,
  super.client_id,
  this.id,
  this.short_name,
  this.title,
  this.text,
  this.description,
  this.photo,
  this.animation,
});