of static method

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

Implementation

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