copyWith method

GetInlineGameHighScores copyWith({
  1. String? inlineMessageId,
  2. int? userId,
})

Implementation

GetInlineGameHighScores copyWith({
  String? inlineMessageId,
  int? userId,
}) =>
    GetInlineGameHighScores(
      inlineMessageId: inlineMessageId ?? this.inlineMessageId,
      userId: userId ?? this.userId,
    );