of static method

Implementation

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