toJson method

Map<String, dynamic> toJson()

Implementation

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