copyWith method

  1. @override
InternalLinkTypeGame copyWith({
  1. String? botUsername,
  2. String? gameShortName,
  3. dynamic extra,
  4. int? clientId,
})
override

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,
    );