unwrap method

List<Element> unwrap()

Unwraps a list of Result to a list of Element.

Implementation

List<Element> unwrap() => map((e) => e.element).toList();