toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final defaultGateway = this.defaultGateway;
final instance = this.instance;
final ipAddress = this.ipAddress;
final logicalInterface = this.logicalInterface;
return {
'defaultGateway': ?defaultGateway,
'instance': ?instance,
'ipAddress': ?ipAddress,
'logicalInterface': ?logicalInterface,
};
}