createVariable top-level constant

Map<ColumnType, String> const createVariable

Maps from a column type to code that can be used to create a variable of the respective type.

Implementation

const Map<ColumnType, String> createVariable = {
  ColumnType.boolean: 'Variable.withBool',
  ColumnType.text: 'Variable.withString',
  ColumnType.integer: 'Variable.withInt',
  ColumnType.bigInt: 'Variable.withBigInt',
  ColumnType.datetime: 'Variable.withDateTime',
  ColumnType.blob: 'Variable.withBlob',
  ColumnType.real: 'Variable.withReal',
};