copyWith method

  1. @override
InlineKeyboardButtonTypeUser copyWith({
  1. int? userId,
})
override

Implementation

@override
InlineKeyboardButtonTypeUser copyWith({
  int? userId,
}) => InlineKeyboardButtonTypeUser(
  userId: userId ?? this.userId,
);