ListArchive.from constructor

ListArchive.from(
  1. List raw
)

Replaces all instances of Map and List in this object with KeyedArchive and ListArchives.

Implementation

ListArchive.from(List<dynamic> raw)
    : _inner = raw.map(_toAtchiveType).toList();