copyWith method

SetMenuButton copyWith({
  1. int? userId,
  2. BotMenuButton? menuButton,
})

Implementation

SetMenuButton copyWith({
  int? userId,
  BotMenuButton? menuButton,
}) =>
    SetMenuButton(
      userId: userId ?? this.userId,
      menuButton: menuButton ?? this.menuButton,
    );