ColumnInfo constructor

ColumnInfo({
  1. int? notnull,
  2. String? name,
  3. int? pk,
  4. String? type,
  5. int? cid,
})

Implementation

ColumnInfo({
  this.notnull,
  this.name,
  this.pk,
  this.type,
  this.cid,
});