addItem method

  1. @override
TutorialModel addItem(
  1. TutorialModel model,
  2. TutorialEntryModel newItem
)
override

Implementation

@override
TutorialModel addItem(TutorialModel model, TutorialEntryModel newItem) {
  List<TutorialEntryModel> newItems =
      model.tutorialEntries == null ? [] : model.tutorialEntries!;
  newItems.add(newItem);
  var newModel = model.copyWith(tutorialEntries: newItems);
  return newModel;
}