isTrue method

ContractValidations isTrue(
  1. bool value,
  2. String property,
  3. String message
)

Implementation

ContractValidations isTrue(bool value, String property, String message) =>
    isFalse(!value, property, message);