Boolean constructor

Boolean({
  1. String? message,
})

Creates a new instance of the Boolean validation rule.

  • message: A custom validation message (optional) to be displayed when the validation fails.

Implementation

Boolean({String? message}) : super(message);