Venue class

Inheritance

Constructors

Venue({required Location location, required String title, required String address, required String provider, required String id, required String type})
Describes a venue
const
Venue.fromJson(Map<String, dynamic> json)
Parse from a json
factory

Properties

address String
address Venue address; as defined by the sender
final
clientId int?
client identifier
no setterinherited
extra → dynamic
callback sign
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
id String
id Identifier of the venue in the provider database; as defined by the sender
final
location Location
location Venue location; as defined by the sender
final
provider String
provider Provider of the venue database; as defined by the sender. Currently, only "foursquare" and "gplaces" (Google Places) need to be supported
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
title String
title Venue name; as defined by the sender
final
type String
type Type of the venue in the provider database; as defined by the sender
final

Methods

copyWith({Location? location, String? title, String? address, String? provider, String? id, String? type}) Venue
getConstructor() String
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson([dynamic extra]) Map<String, dynamic>
override
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

CONSTRUCTOR → const String