of static method

CollegeStudentList of({
  1. int? count,
  2. List<ICollegeStudent>? data,
})

Implementation

static CollegeStudentList of({int? count, List<ICollegeStudent>? data}) {
  final self = CollegeStudentList(<String, dynamic>{},
      mtype: CollegeStudentListRef, update: true);
  if (count != null) self.count = count;
  if (data != null) self.data = data;
  return self;
}