copyWith method

DeclineSuggestedPost copyWith({
  1. int? chatId,
  2. int? messageId,
  3. String? comment,
})

Implementation

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