of static method

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

Implementation

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