toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accountNetworksEnabled = this.accountNetworksEnabled;
  final clientNetwork = this.clientNetwork;
  final hyperthreading = this.hyperthreading;
  final id = this.id;
  final instanceType = this.instanceType;
  final kmsKeyVersion = this.kmsKeyVersion;
  final logicalInterfaces = this.logicalInterfaces;
  final name = this.name;
  final networkConfig = this.networkConfig;
  final networkTemplate = this.networkTemplate;
  final osImage = this.osImage;
  final privateNetwork = this.privateNetwork;
  final sshKeyNames = this.sshKeyNames;
  final userNote = this.userNote;
  return {
    'accountNetworksEnabled': ?accountNetworksEnabled,
    'clientNetwork': ?clientNetwork,
    'hyperthreading': ?hyperthreading,
    'id': ?id,
    'instanceType': ?instanceType,
    'kmsKeyVersion': ?kmsKeyVersion,
    'logicalInterfaces': ?logicalInterfaces,
    'name': ?name,
    'networkConfig': ?networkConfig,
    'networkTemplate': ?networkTemplate,
    'osImage': ?osImage,
    'privateNetwork': ?privateNetwork,
    'sshKeyNames': ?sshKeyNames,
    'userNote': ?userNote,
  };
}