maxOrNull property

Coral<int?> get maxOrNull

Returns the maximum element in this collection, or null if empty.

Implementation

Coral<int?> get maxOrNull => coral.map((source) => source.maxOrNull);