BoolField constructor
BoolField({})
Create an instance of BoolField
Implementation
BoolField(
{String? columnName,
bool? notNull,
bool? isUnique,
bool? defaultValue,
String? jsonMapName})
: super(columnName,
notNull: notNull,
isUnique: isUnique,
defaultValue: defaultValue,
jsonMapName: jsonMapName,
jsonMapType: bool);