maxLength method

I maxLength(
  1. int maxLength, {
  2. int priority(
    1. T a,
    2. T b
    )?,
})

Implementation

I maxLength(int maxLength, {int Function(T a, T b)? priority}) =>
    newInstance(iter.maxLength(maxLength, priority: priority));