SavedGame constructor

SavedGame(
  1. String name,
  2. int modificationDate,
  3. String deviceName, {
  4. String? description,
  5. Duration? timePlayed,
  6. String? coverImage,
})

Implementation

SavedGame(
  this.name,
  this.modificationDate,
  this.deviceName, {
  this.description,
  this.timePlayed,
  this.coverImage,
});