toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final encryptedPassword = this.encryptedPassword;
final kmsKeyVersion = this.kmsKeyVersion;
return {
'encryptedPassword': ?encryptedPassword,
'kmsKeyVersion': ?kmsKeyVersion,
};
}