mode property

List<num> get mode

Finds the mode(s) of the numbers in the iterable.

Returns a list of numbers that appear most frequently.

Implementation

List<num> get mode => NumbersHelper.mode(toList());