toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final allKmsKeys = this.allKmsKeys;
  final allKmsKeysVersions = this.allKmsKeysVersions;
  final callLogLevel = this.callLogLevel;
  final createTime = this.createTime;
  final cryptoKeyName = this.cryptoKeyName;
  final cryptoKeyVersion = this.cryptoKeyVersion;
  final description = this.description;
  final executionHistoryLevel = this.executionHistoryLevel;
  final labels = this.labels;
  final name = this.name;
  final revisionCreateTime = this.revisionCreateTime;
  final revisionId = this.revisionId;
  final serviceAccount = this.serviceAccount;
  final sourceContents = this.sourceContents;
  final state = this.state;
  final stateError = this.stateError;
  final tags = this.tags;
  final updateTime = this.updateTime;
  final userEnvVars = this.userEnvVars;
  return {
    'allKmsKeys': ?allKmsKeys,
    'allKmsKeysVersions': ?allKmsKeysVersions,
    'callLogLevel': ?callLogLevel,
    'createTime': ?createTime,
    'cryptoKeyName': ?cryptoKeyName,
    'cryptoKeyVersion': ?cryptoKeyVersion,
    'description': ?description,
    'executionHistoryLevel': ?executionHistoryLevel,
    'labels': ?labels,
    'name': ?name,
    'revisionCreateTime': ?revisionCreateTime,
    'revisionId': ?revisionId,
    'serviceAccount': ?serviceAccount,
    'sourceContents': ?sourceContents,
    'state': ?state,
    'stateError': ?stateError,
    'tags': ?tags,
    'updateTime': ?updateTime,
    'userEnvVars': ?userEnvVars,
  };
}