TransitAgency constructor

const TransitAgency({
  1. String? name,
  2. String? phone,
  3. String? url,
})

Implementation

const TransitAgency({
  this.name,
  this.phone,
  this.url,
});