CustomTypeBind constructor

CustomTypeBind(
  1. PostgreSQLDataType type,
  2. Object value
)

Implementation

factory CustomTypeBind(PostgreSQLDataType type, Object value) {
  // _bindCount.to
  return CustomTypeBind._(
    '',
    value,
    type,
  );
}