toValues<T extends Object> method

  1. @override
Iterable<T> toValues<T extends Object>()
override

Returns all values as an iterable of T.

Throws FormatException if a value cannot be represented as T.

Implementation

@override
Iterable<T> toValues<T extends Object>() =>
    toValuesOf<T>(list, isExposed: isExposed);