Column constructor

Column({
  1. required String dbType,
  2. required String columnName,
  3. required bool nullable,
  4. required bool isIdentity,
})

Implementation

Column({
  required this.dbType,
  required this.columnName,
  required this.nullable,
  required this.isIdentity,
});