shareFilesToTelegram method

Future<String> shareFilesToTelegram(
  1. List<String> filePaths
)

Shares multiple files to Telegram on Android.

filePaths List of file paths to share (images or videos).

Returns a String indicating the result of the sharing operation.

Implementation

Future<String> shareFilesToTelegram(List<String> filePaths) {
  return EasySocialSharePlatform.instance.shareToTelegramAndroidMultiFiles(
    filePaths,
  );
}