toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final createTime = this.createTime;
  final hostConfig = this.hostConfig;
  final kmsKey = this.kmsKey;
  final labels = this.labels;
  final name = this.name;
  final privateConfig = this.privateConfig;
  final state = this.state;
  final stateNote = this.stateNote;
  final updateTime = this.updateTime;
  final workforceIdentityFederationConfig =
      this.workforceIdentityFederationConfig;
  return {
    'createTime': ?createTime,
    'hostConfig': ?hostConfig,
    'kmsKey': ?kmsKey,
    'labels': ?labels,
    'name': ?name,
    'privateConfig': ?privateConfig,
    'state': ?state,
    'stateNote': ?stateNote,
    'updateTime': ?updateTime,
    'workforceIdentityFederationConfig': ?workforceIdentityFederationConfig,
  };
}