SampleSection constructor

const SampleSection({
  1. int? sectionNum,
  2. int? sectionTime,
  3. int? startTime,
  4. int? endTime,
  5. List<SamplePoint> sectionDataList = const <SamplePoint>[],
})

Implementation

const SampleSection({
  this.sectionNum,
  this.sectionTime,
  this.startTime,
  this.endTime,
  this.sectionDataList = const <SamplePoint>[],
});