toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final network = this.network;
  final postStartupScriptOption = this.postStartupScriptOption;
  final requestId = this.requestId;
  final serviceAccount = this.serviceAccount;
  final subnet = this.subnet;
  return {
    'network': ?network,
    'postStartupScriptOption': ?postStartupScriptOption,
    'requestId': ?requestId,
    'serviceAccount': ?serviceAccount,
    'subnet': ?subnet,
  };
}