SteepSection constructor

SteepSection({
  1. required int startDistanceM,
  2. required int categ,
})

Creates a steep section.

Usually the API user does not create instances directly.

Parameters

  • startDistanceM: Distance in meters where the section starts.
  • categ: Index into the user-provided steep categories list.

Implementation

SteepSection({required this.startDistanceM, required this.categ});