IterableSerializable extension

Iterable Serializable Extension

on

Methods

toJson<T>() List<T>
Serializes this lists into a list of JSON data.

Static Methods

fromJson<T extends SerializableMixin, U>(Iterable json, T decode(U)) List<T>
Creates a list of Serializable objects from json.
tryFromJson<T extends SerializableMixin, U>(Iterable? json, T decode(U)) List<T>?
Creates a list of Serializable objects from json.