of static method

Implementation

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