TcxCourse constructor

TcxCourse({
  1. required String name,
  2. String? notes,
  3. TcxExtensions? extensions,
  4. List<TcxTrack>? track,
  5. List<TcxCourseLap>? lap,
  6. TcxAbstractSource? creator,
  7. List<TcxCoursePoint>? coursePoint,
})

Implementation

TcxCourse({
  required this.name,
  this.notes,
  this.extensions,
  this.track,
  this.lap,
  this.creator,
  this.coursePoint,
});