parseContent abstract method
Parses a serialized Map into a Content instance.
Validates the structure (required fields: type, sn) and converts raw values (e.g., Unix timestamp → DateTime, group string → ID) to proper types.
content is the serialized content data in the Map format defined in Content.
Returns a Content instance if parsing/validation succeeds, null otherwise.
Implementation
Content? parseContent(Mapping content);