HtmlPlatformMediumInMemoryRepository constructor
HtmlPlatformMediumInMemoryRepository(
- HtmlPlatformMediumListChanged trigger,
- List<
HtmlPlatformMediumModel> items
Implementation
HtmlPlatformMediumInMemoryRepository(this.trigger, this.items) {
List<List<HtmlPlatformMediumModel>> myList =
<List<HtmlPlatformMediumModel>>[];
myList.add(items);
theValues = Stream<List<HtmlPlatformMediumModel>>.fromIterable(myList);
}