parseContent abstract method
Parses raw content data into a strongly-typed Content instance.
Converts arbitrary raw content data (e.g., map, JSON string) into a valid Content object based on the registered factories for the message type.
@param content - Raw content data to parse
@return Parsed Content instance (null if parsing fails or no factory exists)
Implementation
Content? parseContent(Object? content);