maxBy<V> method
Implementation
T? maxBy<V>(
V Function(T element) property, {
int Function(V, V)? compare,
}) =>
coll.maxBy(
this,
property,
compare: compare,
);
T? maxBy<V>(
V Function(T element) property, {
int Function(V, V)? compare,
}) =>
coll.maxBy(
this,
property,
compare: compare,
);