integer static method

GenericColumn integer(
  1. String name, {
  2. bool nullable = false,
  3. bool unique = false,
})

Implementation

static GenericColumn integer(String name, {bool nullable = false, bool unique = false}) => GenericColumn(name, DataType.integer, nullable: nullable, unique: unique);