of static method

Implementation

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