fromJsonListCollective static method
Implementation
static List<PulseUserCollective> fromJsonListCollective(List jsonList) {
return jsonList
.map((e) => PulseUserCollective.fromJson(e as Map<String, dynamic>))
.toList();
}
static List<PulseUserCollective> fromJsonListCollective(List jsonList) {
return jsonList
.map((e) => PulseUserCollective.fromJson(e as Map<String, dynamic>))
.toList();
}