MoorColumn constructor

MoorColumn({
  1. required ColumnType type,
  2. required String dartGetterName,
  3. required ColumnName name,
  4. String? overriddenJsonName,
  5. String? customConstraints,
  6. bool nullable = false,
  7. List<ColumnFeature> features = const [],
  8. String? defaultArgument,
  9. String? clientDefaultCode,
  10. UsedTypeConverter? typeConverter,
  11. ColumnDeclaration? declaration,
  12. String? documentationComment,
  13. ColumnGeneratedAs? generatedAs,
})

Implementation

MoorColumn({
  required this.type,
  required this.dartGetterName,
  required this.name,
  this.overriddenJsonName,
  this.customConstraints,
  this.nullable = false,
  this.features = const [],
  this.defaultArgument,
  this.clientDefaultCode,
  this.typeConverter,
  this.declaration,
  this.documentationComment,
  this.generatedAs,
});