We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Lets generate Bean for this simple model:
class User { @PrimaryKey(auto: true, isNullable: false) int id; String name; int age; User({this.id, this.name, this.age}); }
As you have noticed, the field id is declared as non-nullable, auto-incremented primary key.
id
TODO