BoolField constructor

BoolField({
  1. String? columnName,
  2. bool? notNull,
  3. bool? isUnique,
  4. bool? defaultValue,
  5. String? jsonMapName,
})

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);