copyWith method

GetPreparedInlineMessage copyWith({
  1. int? botUserId,
  2. String? preparedMessageId,
})

Implementation

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