assertNull method

void assertNull(
  1. String? message,
  2. Any? actual
)

Asserts that the specified value is null.

  • message - the message to report if the assertion fails.

Implementation

external Unit assertNull(
  String? message,
  Any? actual,
);