of static method

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

Implementation

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