We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
A stored property with an initializer, e.g.,
static let defaultColor: Color = .red
might be better off as a computed property:
static var defaultColor: Color { .red }
or vice versa. Let's create a pair of code actions to go from the first to second or vice-versa.