setNewReaction method

dynamic setNewReaction(
  1. List list
)

Implementation

setNewReaction(List<dynamic> list) {
  final temp = list.map((e) => Reactions.fromJson(e)).toList();
  reactions = temp;
}