copyWith method

GetPreparedKeyboardButton copyWith({
  1. int? botUserId,
  2. String? preparedButtonId,
})

Implementation

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