networkTypeOther property

NetworkTypeOther? networkTypeOther

A different network type (e.g., Ethernet network)

Implementation

NetworkTypeOther? get networkTypeOther {
  if (this is NetworkTypeOther) {
    return this as NetworkTypeOther;
  }
  return null;
}