EventLocation constructor

const EventLocation({
  1. required String name,
  2. PostalAddress? address,
  3. String? url,
})

Implementation

const EventLocation({required this.name, this.address, this.url});