ssid property

List<int> ssid

SSID advertised by the access point. Note this is in binary form, but is likely to contain a text string.

Implementation

List<int> get ssid {
  var value = _object.getCachedProperty(_accessPointInterfaceName, 'Ssid');
  if (value == null) {
    return [];
  }
  if (value.signature != DBusSignature('ay')) {
    return [];
  }
  return (value as DBusArray)
      .children
      .map((e) => (e as DBusByte).value)
      .toList();
}