Column constructor

Column(
  1. String name,
  2. String type, {
  3. String? defaultsTo,
  4. bool? isKey,
  5. bool? isUnique,
  6. String? family,
  7. bool? isDescending,
})

Implementation

Column(
  this.name,
  this.type, {
  this.defaultsTo,
  bool? isKey,
  bool? isUnique,
  this.family,
  bool? isDescending,
})  : isKey = isKey ?? false,
      isUnique = isUnique ?? false,
      isDescending = isDescending ?? false;