putSharedKeyFilesCbProviderKeys method

Future<void> putSharedKeyFilesCbProviderKeys(
  1. List<String> filePaths,
  2. List<String> publicKeys
)

Implementation

Future<void> putSharedKeyFilesCbProviderKeys(
  List<String> filePaths,
  List<String> publicKeys,
) async {
  return await _channel.invokeMethod<void>(
    'putSharedKeyFilesCbProviderKeys',
    <String, dynamic>{
      'filePaths': filePaths,
      'publicKeys': publicKeys,
    },
  );
}