SteepSection.fromJson constructor

SteepSection.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory SteepSection.fromJson(final Map<String, dynamic> json) {
  return SteepSection(
    startDistanceM: json['startDistanceM'],
    categ: json['categ'],
  );
}