arrayMinimumN method

Expression arrayMinimumN(
  1. Object? n
)

The n smallest elements of this array.

Implementation

Expression arrayMinimumN(Object? n) {
  return _ArrayMinimumNExpression(this, _toExpression(n));
}