alwaysReturnsFalse function

bool alwaysReturnsFalse([
  1. Object? _
])

A function that can take a nullable Object and will always return false.

Used in other function declarations as a constant default parameter.

Implementation

bool alwaysReturnsFalse([Object? _]) => false;