NUMERIC constructor

const NUMERIC({
  1. int? p,
  2. int? s,
  3. String? name,
  4. bool primaryKey = false,
  5. bool notNull = false,
  6. int autoInc = 0,
  7. bool unique = false,
  8. bool index = false,
  9. String? check,
  10. String? uniqueName,
  11. String? defaultValue,
  12. String? extras,
})

Implementation

const NUMERIC({
  int? p,
  int? s,
  super.name,
  super.primaryKey = false,
  super.notNull = false,
  super.autoInc = 0,
  super.unique = false,
  super.index = false,
  super.check,
  super.uniqueName,
  super.defaultValue,
  super.extras,
}) : super(type: "NUMERIC");