listFromJson static method

List<GroupSubject> listFromJson(
  1. Iterable<Map<String, dynamic>> list
)

Creates a list of GroupSubject from JSON data.

Implementation

static List<GroupSubject> listFromJson(Iterable<Map<String, dynamic>> list) {
  return list.map((e) => GroupSubject.fromJson(e)).toList();
}