Configuration constructor

const Configuration({
  1. Iterable light = const Iterable<ElementaryBase<dynamic>>.empty(),
  2. Iterable dark = const Iterable<ElementaryBase<dynamic>>.empty(),
})

Implementation

const Configuration({
  this.light = const Iterable<ElementaryBase<dynamic>>.empty(),
  this.dark = const Iterable<ElementaryBase<dynamic>>.empty(),
});