of static method

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

Implementation

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