of static method

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

Implementation

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