copyWith method

InputMessageGame copyWith({
  1. int? botUserId,
  2. String? gameShortName,
})

Implementation

InputMessageGame copyWith({int? botUserId, String? gameShortName}) =>
    InputMessageGame(
      botUserId: botUserId ?? this.botUserId,
      gameShortName: gameShortName ?? this.gameShortName,
    );