copyWith method
Implementation
@override
InternalLinkTypeGame copyWith({
String? botUsername,
String? gameShortName,
dynamic extra,
int? clientId,
}) => InternalLinkTypeGame(
botUsername: botUsername ?? this.botUsername,
gameShortName: gameShortName ?? this.gameShortName,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);