UUID constructor

const UUID({
  1. String? name,
  2. bool primaryKey = false,
  3. bool notNull = false,
  4. bool unique = false,
  5. bool index = false,
  6. String? check,
  7. String? uniqueName,
  8. String? defaultValue,
  9. String? extras,
})

Implementation

const UUID({
  super.name,
  super.primaryKey = false,
  super.notNull = false,
  super.unique = false,
  super.index = false,
  super.check,
  super.uniqueName,
  super.defaultValue,
  super.extras,
}) : super(type: "UUID");