IntField constructor
IntField({})
Create an instance of IntField
Implementation
IntField(
{String? columnName,
this.autoIncrement,
this.primaryKey,
bool? notNull,
int? defaultValue,
bool? isUnique,
String? jsonMapName})
: super(columnName,
notNull: notNull,
isUnique: isUnique,
jsonMapName: jsonMapName,
jsonMapType: int) {
value = defaultValue;
}