fromJsonListCollective static method

List<PulseUserCollective> fromJsonListCollective(
  1. List jsonList
)

Implementation

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