NopDbItem constructor

const NopDbItem({
  1. String name = '',
  2. bool primaryKey = false,
  3. String constraints = '',
  4. Type? type,
})

Implementation

const NopDbItem({
  this.name = '',
  this.primaryKey = false,
  this.constraints = '',
  this.type,
});