copyWith method
Implementation
Game copyWith({
int? id,
String? shortName,
String? title,
FormattedText? text,
String? description,
Photo? photo,
Animation? animation,
}) =>
Game(
id: id ?? this.id,
shortName: shortName ?? this.shortName,
title: title ?? this.title,
text: text ?? this.text,
description: description ?? this.description,
photo: photo ?? this.photo,
animation: animation ?? this.animation,
);