PrimaryKeyDaoField constructor

const PrimaryKeyDaoField({
  1. String? name,
  2. int? length,
  3. bool autoIncrement = true,
})

Implementation

const PrimaryKeyDaoField(
    {String? name, int? length, this.autoIncrement = true})
    : super(name: name, length: length);