shareFile method

Future<bool?> shareFile({
  1. required List<String> filePath,
  2. required String phone,
  3. @Deprecated("No support for text along with files, this field is ignored") String? text,
  4. Package package = Package.whatsapp,
})

Implementation

Future<bool?> shareFile({
  required List<String> filePath,
  required String phone,
  @Deprecated("No support for text along with files, this field is ignored")
  String? text,
  Package package = Package.whatsapp,
}) {
  throw UnimplementedError('shareFile() has not been implemented.');
}