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