toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final connectionState = this.connectionState;
final connectionType = this.connectionType;
final encryptionOn = this.encryptionOn;
final gatewayIpAddress = this.gatewayIpAddress;
final gatewayIpv6Address = this.gatewayIpv6Address;
final guid = this.guid;
final ipv6Address = this.ipv6Address;
final lanIpAddress = this.lanIpAddress;
final linkDownSpeedKbps = this.linkDownSpeedKbps;
final metered = this.metered;
final receivingBitRateMbps = this.receivingBitRateMbps;
final reportTime = this.reportTime;
final sampleFrequency = this.sampleFrequency;
final signalStrengthDbm = this.signalStrengthDbm;
final transmissionBitRateMbps = this.transmissionBitRateMbps;
final transmissionPowerDbm = this.transmissionPowerDbm;
final wifiLinkQuality = this.wifiLinkQuality;
final wifiPowerManagementEnabled = this.wifiPowerManagementEnabled;
return {
'connectionState': ?connectionState,
'connectionType': ?connectionType,
'encryptionOn': ?encryptionOn,
'gatewayIpAddress': ?gatewayIpAddress,
'gatewayIpv6Address': ?gatewayIpv6Address,
'guid': ?guid,
'ipv6Address': ?ipv6Address,
'lanIpAddress': ?lanIpAddress,
'linkDownSpeedKbps': ?linkDownSpeedKbps,
'metered': ?metered,
'receivingBitRateMbps': ?receivingBitRateMbps,
'reportTime': ?reportTime,
'sampleFrequency': ?sampleFrequency,
'signalStrengthDbm': ?signalStrengthDbm,
'transmissionBitRateMbps': ?transmissionBitRateMbps,
'transmissionPowerDbm': ?transmissionPowerDbm,
'wifiLinkQuality': ?wifiLinkQuality,
'wifiPowerManagementEnabled': ?wifiPowerManagementEnabled,
};
}