copyWith method
Implementation
ReportChat copyWith({
int? chatId,
String? optionId,
List<int>? messageIds,
String? text,
}) => ReportChat(
chatId: chatId ?? this.chatId,
optionId: optionId ?? this.optionId,
messageIds: messageIds ?? this.messageIds,
text: text ?? this.text,
);