parseList property

List<Image> Function(dynamic value) parseList

Parses List of Image instances from a given value.

Value can be one of the following:

  • Iterable of dynamic - then each object will be decoded same way as parse and resulting Iterable will be returned.
  • Iterable of Image - then value will be returned as-is.

Implementation

static List<Image> Function(dynamic value) get parseList =>
  ImageMapper.container.fromValue<List<Image>>;