This repository was archived by the owner on Feb 26, 2023. It is now read-only.

Description
hello, first of all, this is an awesome library, thank you for taking the time to write this. I have a class with a property int, which doesn't become part of the builder. Here's a snippet:
val str: Int = 0,
val int: Int = 0,
val wis: Int = 0,
val dex: Int = 0,
val con: Int = 0,
the corresponding builder gets:
private var str: Int? = null
private var wis: Int? = null
private var dex: Int? = null
private var con: Int? = null
is this expected behavior? If not I'd be happy to help debug the issue. Thanks for reading and have a great day!