toJson method
Implementation
Map<String, dynamic> toJson() {
final enabled = this.enabled;
final kMSMasterKeyId = this.kMSMasterKeyId;
final sSEType = this.sSEType;
return {
if (enabled != null) 'Enabled': enabled,
if (kMSMasterKeyId != null) 'KMSMasterKeyId': kMSMasterKeyId,
if (sSEType != null) 'SSEType': sSEType.toValue(),
};
}