port property

int port
latefinal

Port the admin listens on. This is especially useful if the port was assigned automatically (a "0" port was used in the bindUri).

Implementation

late final int port = () {
  final result = C.admin_port(_ptr);
  reachabilityFence(this);
  if (result == 0) throwLatestNativeError();
  return result;
}();