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