ColumnInfo constructor

ColumnInfo({
  1. required String name,
  2. required String type,
  3. bool? caseSensitive,
  4. String? catalogName,
  5. String? label,
  6. ColumnNullable? nullable,
  7. int? precision,
  8. int? scale,
  9. String? schemaName,
  10. String? tableName,
})

Implementation

ColumnInfo({
  required this.name,
  required this.type,
  this.caseSensitive,
  this.catalogName,
  this.label,
  this.nullable,
  this.precision,
  this.scale,
  this.schemaName,
  this.tableName,
});