toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final cloudConsoleUri = this.cloudConsoleUri;
  final customId = this.customId;
  final email = this.email;
  final handoverServiceAccount = this.handoverServiceAccount;
  final instances = this.instances;
  final location = this.location;
  final name = this.name;
  final networks = this.networks;
  final pod = this.pod;
  final state = this.state;
  final statusMessage = this.statusMessage;
  final ticketId = this.ticketId;
  final updateTime = this.updateTime;
  final volumes = this.volumes;
  final vpcScEnabled = this.vpcScEnabled;
  return {
    'cloudConsoleUri': ?cloudConsoleUri,
    'customId': ?customId,
    'email': ?email,
    'handoverServiceAccount': ?handoverServiceAccount,
    'instances': ?instances,
    'location': ?location,
    'name': ?name,
    'networks': ?networks,
    'pod': ?pod,
    'state': ?state,
    'statusMessage': ?statusMessage,
    'ticketId': ?ticketId,
    'updateTime': ?updateTime,
    'volumes': ?volumes,
    'vpcScEnabled': ?vpcScEnabled,
  };
}