Bands constructor

Bands([
  1. List<Band> bands = const <Band>[]
])

Initializes a new empty Bands collection.

Creates a collection with an empty list of bands ready to be populated.

Implementation

Bands([List<Band> bands = const <Band>[]]) {
  list.addAll(bands);
}