isTrue method

Validador isTrue(
  1. bool boolValue, {
  2. String msg = DEFAULT_MESSAGE,
})

Implementation

Validador isTrue(bool boolValue, {String msg = DEFAULT_MESSAGE}) {
  this._isBool = boolValue;
  this._isBoolMsg = msg;
  return this;
}