sequence method

Result<List<T>> sequence()

Implementation

Result<List<T>> sequence() =>
    tryEither((bind) => this.map((e) => bind(e)).toList());