expectNull function
Expect that nullable
is null
.
Implementation
void expectNull(
dynamic nullable, {
String? reason,
dynamic skip, // true or a String
}) {
expect(
nullable,
isNull,
reason: reason,
skip: skip,
);
}
Expect that nullable
is null
.
void expectNull(
dynamic nullable, {
String? reason,
dynamic skip, // true or a String
}) {
expect(
nullable,
isNull,
reason: reason,
skip: skip,
);
}