toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final kmsKeyName = this.kmsKeyName;
  final kmsKeyServiceAccount = this.kmsKeyServiceAccount;
  final rawKey = this.rawKey;
  final rsaEncryptedKey = this.rsaEncryptedKey;
  return {
    'kmsKeyName': ?kmsKeyName,
    'kmsKeyServiceAccount': ?kmsKeyServiceAccount,
    'rawKey': ?rawKey,
    'rsaEncryptedKey': ?rsaEncryptedKey,
  };
}