encrypt abstract method

Future<String> encrypt(
  1. String message,
  2. String symKey, {
  3. int? type,
  4. String? iv,
  5. String? senderPublicKey,
})

Implementation

Future<String> encrypt(
  String message,
  String symKey, {
  int? type,
  String? iv,
  String? senderPublicKey,
});