of static method

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

Implementation

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