WiFiInfoWrapper.withMap constructor

WiFiInfoWrapper.withMap(Map nativeInfo)

Implementation

WiFiInfoWrapper.withMap(Map<dynamic, dynamic> nativeInfo) {
  if (nativeInfo != null) {
    this._bssids = nativeInfo["BSSIDS"];
    this._ssids = nativeInfo["SSIDS"];
    this._capabilities = nativeInfo["CAPABILITES"];
    this._singalStrengths = nativeInfo["SIGNALSTRENGTHS"];
    this._frequencies = nativeInfo["FREQUENCIES"];
  }
}