last method

Future<Option<T>> last()

Implementation

Future<Option<T>> last() => fold(O.none<T>(), (acc, item) => O.some(item));