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