of static method

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

Implementation

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