fromIterable<T> abstract method

T fromIterable<T>(
  1. Iterable iterable
)

Decodes an iterable to a given type T.

This is a typed wrapper around the fromValue method.

Implementation

T fromIterable<T>(Iterable<dynamic> iterable);