var displayRepresentation: DisplayRepresentation {
DisplayRepresentation(
title: LocalizedStringResource(stringLiteral: name ),
subtitle: "Door",
image: .init(named: image!),
synonyms: ["Gate"]
)
}
where name & image are defined as:
@Property(title: "Name")
var name: String
@Property(title: "Image")
var image: String?