copyWith method
Implementation
ChatMessage copyWith({
String? text,
ChatMedia? chatMedia,
bool? isSender,
DateTime? createdAt,
}) {
return ChatMessage(
text: text ?? this.text,
chatMedia: chatMedia ?? this.chatMedia,
isSender: isSender ?? this.isSender,
createdAt: createdAt ?? this.createdAt,
);
}