toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final architecture = this.architecture;
  final autoDelete = this.autoDelete;
  final boot = this.boot;
  final deviceName = this.deviceName;
  final diskEncryptionKey = this.diskEncryptionKey;
  final diskSizeGb = this.diskSizeGb;
  final forceAttach = this.forceAttach;
  final guestOsFeatures = this.guestOsFeatures;
  final index = this.index;
  final initializeParams = this.initializeParams;
  final interface = this.interface;
  final kind = this.kind;
  final licenses = this.licenses;
  final mode = this.mode;
  final savedState = this.savedState;
  final shieldedInstanceInitialState = this.shieldedInstanceInitialState;
  final source = this.source;
  final type = this.type;
  return {
    'architecture': ?architecture,
    'autoDelete': ?autoDelete,
    'boot': ?boot,
    'deviceName': ?deviceName,
    'diskEncryptionKey': ?diskEncryptionKey,
    'diskSizeGb': ?diskSizeGb,
    'forceAttach': ?forceAttach,
    'guestOsFeatures': ?guestOsFeatures,
    'index': ?index,
    'initializeParams': ?initializeParams,
    'interface': ?interface,
    'kind': ?kind,
    'licenses': ?licenses,
    'mode': ?mode,
    'savedState': ?savedState,
    'shieldedInstanceInitialState': ?shieldedInstanceInitialState,
    'source': ?source,
    'type': ?type,
  };
}