pacString property

String get pacString

Implementation

String get pacString {
  if (type == 'http') {
    return 'PROXY $host:$port';
  } else if (type == 'https') {
    return 'PROXY $host:$port';
  } else {
    return 'DIRECT';
  }
}