toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final encryptionType = this.encryptionType;
  final kmsKeyPrimaryState = this.kmsKeyPrimaryState;
  final kmsKeyVersions = this.kmsKeyVersions;
  final lastUpdateTime = this.lastUpdateTime;
  return {
    'encryptionType': ?encryptionType,
    'kmsKeyPrimaryState': ?kmsKeyPrimaryState,
    'kmsKeyVersions': ?kmsKeyVersions,
    'lastUpdateTime': ?lastUpdateTime,
  };
}