Venue constructor

Venue({
  1. String? extra,
  2. int? client_id,
  3. Location? location,
  4. string? title,
  5. string? address,
  6. string? provider,
  7. string? id,
  8. string? type,
})

Implementation

Venue({
  super.extra,
  super.client_id,
  this.location,
  this.title,
  this.address,
  this.provider,
  this.id,
  this.type,
});