BooleanDj constructor

BooleanDj(
  1. bool? value, {
  2. dynamic descriptionDj,
  3. dynamic baseWidgetDjType = 'bool',
  4. DataTypeDjType dataTypeDjType = DataTypeDjType.Boolean,
  5. CodePartDjType codePartDjType = CodePartDjType.DataType,
})

Implementation

BooleanDj(
  this.value, {
  descriptionDj,
  baseWidgetDjType = 'bool',
  DataTypeDjType dataTypeDjType = DataTypeDjType.Boolean,
  CodePartDjType codePartDjType = CodePartDjType.DataType,
}) : super(
        baseWidgetDjType: baseWidgetDjType,
        descriptionDj: descriptionDj,
        dataTypeDjType: dataTypeDjType,
        codePartDjType: codePartDjType,
      );