copyWith method
Implementation
BusinessChatLinkInfo copyWith({int? chatId, FormattedText? text}) =>
BusinessChatLinkInfo(
chatId: chatId ?? this.chatId,
text: text ?? this.text,
);
BusinessChatLinkInfo copyWith({int? chatId, FormattedText? text}) =>
BusinessChatLinkInfo(
chatId: chatId ?? this.chatId,
text: text ?? this.text,
);