ip property

String? get ip

The server IP address that the request was actually sent to. Note that it may be a literal IPv6 address.

Implementation

String? get ip => _wrapped.ip;
set ip (String? v)

Implementation

set ip(String? v) {
  _wrapped.ip = v;
}