MssqlBoundColumn constructor

MssqlBoundColumn({
  1. required String name,
  2. required MssqlType type,
  3. bool nullable = false,
  4. bool isIdentity = false,
  5. bool isComputed = false,
  6. bool isRowVersion = false,
  7. bool hasDefault = false,
  8. bool isReadOnly = false,
  9. int maxLength = 0,
  10. int precision = 18,
  11. int scale = 0,
  12. MssqlTypeConverter<Object?, Object?>? converter,
})

Implementation

MssqlBoundColumn({
  required this.name,
  required this.type,
  this.nullable = false,
  this.isIdentity = false,
  this.isComputed = false,
  this.isRowVersion = false,
  this.hasDefault = false,
  this.isReadOnly = false,
  this.maxLength = 0,
  this.precision = 18,
  this.scale = 0,
  this.converter,
});