assertFalse function

void assertFalse({
  1. String? message,
  2. Boolean? actual,
  3. Boolean block()?,
})

Asserts that the given block returns false with an optional message.

Implementation

Unit assertFalse({
  String? message,
  Boolean? actual,
  Boolean Function()? block,
}) {}