copyWith method
Implementation
DeclineSuggestedPost copyWith({
int? chatId,
int? messageId,
String? comment,
}) => DeclineSuggestedPost(
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
comment: comment ?? this.comment,
);