NetworkInfo constructor

NetworkInfo({
  1. String? imei,
  2. String? meid,
  3. String? networkOperatorName,
  4. List<TelephonyInfo>? telephonyInfos,
  5. String? wifiMacAddress,
})

Implementation

NetworkInfo({
  this.imei,
  this.meid,
  this.networkOperatorName,
  this.telephonyInfos,
  this.wifiMacAddress,
});