withReachability function

AutoNATOption withReachability(
  1. Reachability reachability
)

Implementation

AutoNATOption withReachability(Reachability reachability) {
  return AutoNATOption((AutoNATConfig c) {
    c.forceReachability = true;
    c.reachability = reachability;
  });
}