of static method

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

Implementation

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