HtmlPlatformMediumInMemoryRepository constructor

HtmlPlatformMediumInMemoryRepository(
  1. HtmlPlatformMediumListChanged trigger,
  2. List<HtmlPlatformMediumModel> items
)

Implementation

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