alwaysReturnsTrue function

bool alwaysReturnsTrue([
  1. Object? _
])

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

Used in other function declarations as a constant default parameter.

Implementation

bool alwaysReturnsTrue([Object? _]) => true;