of static method

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

Implementation

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