PTRoute constructor

PTRoute({
  1. required int routeId,
  2. String? routeShortName,
  3. String? routeLongName,
  4. required PTRouteType routeType,
  5. Color? routeColor,
  6. Color? routeTextColor,
  7. String? heading,
})

Implementation

PTRoute({
  required this.routeId,
  this.routeShortName,
  this.routeLongName,
  required this.routeType,
  this.routeColor,
  this.routeTextColor,
  this.heading,
});