TutorialEntryInMemoryRepository constructor

TutorialEntryInMemoryRepository(
  1. TutorialEntryListChanged trigger,
  2. List<TutorialEntryModel> items
)

Implementation

TutorialEntryInMemoryRepository(this.trigger, this.items) {
  List<List<TutorialEntryModel>> myList = <List<TutorialEntryModel>>[];
  myList.add(items);
  theValues = Stream<List<TutorialEntryModel>>.fromIterable(myList);
}