RouteInfo constructor

RouteInfo({
  1. int? id,
  2. String? name,
  3. String? grade,
  4. String? gradeSystem,
  5. String? type,
  6. double? height,
})

Implementation

RouteInfo({
  this.id,
  this.name,
  this.grade,
  this.gradeSystem,
  this.type,
  this.height,
});