TransitLine constructor

const TransitLine({
  1. String? name,
  2. String? shortName,
  3. String? color,
  4. List<TransitAgency>? agencies,
  5. String? url,
  6. String? icon,
  7. String? textColor,
  8. Vehicle? vehicle,
})

Implementation

const TransitLine({
  this.name,
  this.shortName,
  this.color,
  this.agencies,
  this.url,
  this.icon,
  this.textColor,
  this.vehicle,
});