bigIntArray constant

CustomSqlType<List<int>> const bigIntArray

A postgres array of int values, with each element being a 64bit integer.

Implementation

static const CustomSqlType<List<int>> bigIntArray =
    ArrayType(type: pg.Type.bigIntegerArray, name: 'int8[]');