PTAgency constructor

PTAgency({
  1. required int id,
  2. required String name,
  3. String? url,
})

Creates a PTAgency with the given id, name, and optional url.

Implementation

PTAgency({required this.id, required this.name, this.url});