firstWhere method
Returns the first element that satisfies the given test.
This is a non-mutating query operation.
Implementation
@override
E firstWhere(bool Function(E element) test, {E Function()? orElse}) =>
value.firstWhere(test, orElse: orElse);