copyWith method
Implementation
SendConversationRequest copyWith({
String? token,
String? message,
String? message_type,
}) {
return SendConversationRequest(
token: token ?? this.token,
message: message ?? this.message,
message_type: message_type ?? this.message_type,
);
}