BooleanSchema constructor

BooleanSchema({
  1. String? title,
  2. String? description,
  3. bool? defaultValue,
})

Implementation

BooleanSchema({super.title, super.description, super.defaultValue})
    : super(type: 'boolean');