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