JunctionColumn constructor

const JunctionColumn({
  1. required String name,
  2. required JunctionColumnType type,
  3. bool nullable = false,
  4. String? defaultValue,
  5. bool unique = false,
})

Implementation

const JunctionColumn({
  required this.name,
  required this.type,
  this.nullable = false,
  this.defaultValue,
  this.unique = false,
});