of static method

Implementation

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