IsBoolean constructor

IsBoolean({
  1. bool isOptional = false,
  2. required dynamic value,
  3. String? propertyName,
})

Implementation

IsBoolean({
  this.isOptional = false,
  required this.value,
  this.propertyName,
});