BodyTemperatureRecordListCsvBase<N extends BodyTemperatureRecordNodeCsvRow> constructor

BodyTemperatureRecordListCsvBase<N extends BodyTemperatureRecordNodeCsvRow>(
  1. CsvRow attributes, [
  2. Iterable<N>? source
])

Construct BodyTemperatureRecordListCsvBase with given attributes.

By default, it return a empty List. If source provided, the origin Iterable will be applied.

Implementation

BodyTemperatureRecordListCsvBase(CsvRow attributes, [Iterable<N>? source])
    : this.attributes = UnmodifiableListView(attributes),
      _nodes = source == null ? <N>[] : List.from(source);