Venue class

Describes a venue.

Inheritance
Available Extensions

Constructors

Venue({required Location location, required String title, required String address, required String provider, required String id, required String type, int? extra, int? clientId})
Describes a venue

Properties

address String
Venue address; as defined by the sender.
read / write
clientId int?
TDLib client instance identifier, for which the response was received.
read / writeoverride
extra int?
Request identifier. Must be non-zero.
read / writeoverride
hashCode int
The hash code for this object.
read-onlyinherited
id String
Identifier of the venue in the provider database; as defined by the sender.
read / write
location Location
Venue location; as defined by the sender.
read / write
provider String
Provider of the venue database; as defined by the sender. Currently, only "foursquare" and "gplaces" (Google Places) need to be supported.
read / write
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited
title String
Venue name; as defined by the sender.
read / write
type String
Type of the venue in the provider database; as defined by the sender.
read / write

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Object to Map serializer
override
toString() String
A string representation of this object.
override

Operators

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

Static Methods

fromMap(Map<String, dynamic>? _map) Venue?
Construct from Map.
override

Constants

CONSTRUCTOR → const String
@type
"venue"