encryptFile method

  1. @override
Future<Map?> encryptFile(
  1. String sharedSecret,
  2. String ptPath,
  3. String ctPath
)
override

Implementation

@override
Future<Map<dynamic, dynamic>?> encryptFile(
    String sharedSecret, String ptPath, String ctPath) async {
  return _methodChannel.invokeMethod<Map<dynamic, dynamic>?>('encryptFile', {
    'sharedSecret': sharedSecret,
    'ptPath': ptPath,
    'ctPath': ctPath,
  });
}