TransitAgency constructor

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

Implementation

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