fromJson<T extends SerializableMixin, U>  static method 
Creates a list of Serializable objects from json.
Implementation
static List<T> fromJson<T extends SerializableMixin, U>(
  final Iterable json,
  T Function(U) decode,
) => json.cast<U>().map(decode).toList(growable: true);