listFromJson static method
Creates a list of PeerAuthenticationList from JSON data.
Implementation
static List<PeerAuthenticationList> listFromJson(
Iterable<Map<String, dynamic>> list) {
return list.map((e) => PeerAuthenticationList.fromJson(e)).toList();
}