PgResultColumn constructor

PgResultColumn({
  1. required PgDataType<Object> type,
  2. String? tableName,
  3. int? tableOid,
  4. String? columnName,
  5. int? columnOid,
  6. bool binaryEncoding = false,
})

Implementation

PgResultColumn({
  required this.type,
  this.tableName,
  this.tableOid,
  this.columnName,
  this.columnOid,
  this.binaryEncoding = false,
});