ColumnMetadata constructor

ColumnMetadata({
  1. int? arrayBaseColumnType,
  2. bool? isAutoIncrement,
  3. bool? isCaseSensitive,
  4. bool? isCurrency,
  5. bool? isSigned,
  6. String? label,
  7. String? name,
  8. int? nullable,
  9. int? precision,
  10. int? scale,
  11. String? schemaName,
  12. String? tableName,
  13. int? type,
  14. String? typeName,
})

Implementation

ColumnMetadata({
  this.arrayBaseColumnType,
  this.isAutoIncrement,
  this.isCaseSensitive,
  this.isCurrency,
  this.isSigned,
  this.label,
  this.name,
  this.nullable,
  this.precision,
  this.scale,
  this.schemaName,
  this.tableName,
  this.type,
  this.typeName,
});