Proxy class

Contains information about a proxy server.

Inheritance
Available Extensions

Constructors

Proxy({required int id, required String server, required int port, required int last_used_date, required bool is_enabled, required ProxyType type, int? extra, int? clientId})
Contains information about a proxy server

Properties

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 int
Unique identifier of the proxy.
read / write
is_enabled bool
True, if the proxy is enabled now.
read / write
last_used_date int
Point in time (Unix timestamp) when the proxy was last used; 0 if never.
read / write
port int
Proxy server port.
read / write
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited
server String
Proxy server domain or IP address.
read / write
type ProxyType
Type of the proxy.
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) Proxy?
Construct from Map.
override

Constants

CONSTRUCTOR → const String
@type
"proxy"