copyWith method
Implementation
SetBusinessMessageIsPinned copyWith({
String? businessConnectionId,
int? chatId,
int? messageId,
bool? isPinned,
}) => SetBusinessMessageIsPinned(
businessConnectionId: businessConnectionId ?? this.businessConnectionId,
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
isPinned: isPinned ?? this.isPinned,
);