ClimbSection constructor
Creates a climb section.
Usually the API user does not create instances directly.
Parameters
startDistanceM: Distance in meters where this section starts.endDistanceM: Distance in meters where this section ends.slope: Average slope for the section (percent or fraction as used by the SDK).grade: The difficulty Grade for this section.
Implementation
ClimbSection({
required this.startDistanceM,
required this.endDistanceM,
required this.slope,
required this.grade,
});