ByteaColumn constructor

ByteaColumn(
  1. String name, {
  2. String? ref,
  3. bool isKey = false,
})

Implementation

ByteaColumn(
  super.name, {
  super.ref,
  super.isKey,
}) : super(
        ddl: 'BYTEA',
        type: Type.byteArray,
      );