ContentProperty.fromJson constructor
Implementation
factory ContentProperty.fromJson(Map<String, Object?> json) {
return ContentProperty(
id: json[r'id'],
key: json[r'key'] as String?,
value: json[r'value'],
version: json[r'version'] != null
? Version.fromJson(json[r'version']! as Map<String, Object?>)
: null,
);
}