InsertColumn constructor

const InsertColumn(
  1. String name,
  2. Column definitionType,
  3. {required String onTable,
  4. dynamic defaultValue,
  5. bool autoincrement = false,
  6. bool nullable = true,
  7. bool unique = false}
)

Implementation

const InsertColumn(
  this.name,
  this.definitionType, {
  required this.onTable,
  this.defaultValue,
  this.autoincrement = false,
  this.nullable = true,
  this.unique = false,
});