toJson method

Map<String, dynamic> toJson()

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,
  };
}