toJson method
Implementation
Map<String, dynamic> toJson() {
final kMSMasterKeyID = this.kMSMasterKeyID;
final sSEAlgorithm = this.sSEAlgorithm;
return {
if (kMSMasterKeyID != null) 'KMSMasterKeyID': kMSMasterKeyID,
if (sSEAlgorithm != null) 'SSEAlgorithm': sSEAlgorithm,
};
}