copyWith method
Implementation
ReportChatPhoto copyWith({
int? chatId,
int? fileId,
ReportReason? reason,
String? text,
}) =>
ReportChatPhoto(
chatId: chatId ?? this.chatId,
fileId: fileId ?? this.fileId,
reason: reason ?? this.reason,
text: text ?? this.text,
);