toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final encryptionContextEquals = this.encryptionContextEquals;
  final encryptionContextSubset = this.encryptionContextSubset;
  return {
    if (encryptionContextEquals != null)
      'EncryptionContextEquals': encryptionContextEquals,
    if (encryptionContextSubset != null)
      'EncryptionContextSubset': encryptionContextSubset,
  };
}