Instance Method
decodeNil(column:)
Must return
true if the given column name is missing from the row or if it exists but has a value equivalent to an SQL NULL, or false if the column name exists with a non-NULL value.func decodeNil(column: String) throws -> Bool
Discussion
Corresponds to KeyedDecodingContainer.decodeNil(forKey:), especially with respect to the treatment of “missing” keys.