Finds the mode(s) of the integers in the iterable.
Returns a list of integers that appear most frequently.
List<int> get mode => convertToList<int>(NumbersHelper.mode(toList()));