toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final adapterDescription = this.adapterDescription;
final cidr = this.cidr;
final interfaceName = this.interfaceName;
final ipAddress = this.ipAddress;
final macAddress = this.macAddress;
final speed = this.speed;
final vlanId = this.vlanId;
return {
'adapterDescription': ?adapterDescription,
'cidr': ?cidr,
'interfaceName': ?interfaceName,
'ipAddress': ?ipAddress,
'macAddress': ?macAddress,
'speed': ?speed,
'vlanId': ?vlanId,
};
}