DBMetaField constructor

const DBMetaField({
  1. required String name,
  2. DBFieldType type = DBFieldType.String,
  3. bool autoIncrement = false,
  4. bool pk = false,
  5. bool required = false,
  6. String defaultDefine = "",
})

Implementation

const DBMetaField({
  required this.name,
  this.type = DBFieldType.String,
  this.autoIncrement = false,
  this.pk = false,
  this.required = false,
  this.defaultDefine = "",
});