shareToTelegram method

Future<String> shareToTelegram(
  1. String message
)

Shares a text message to Telegram on iOS.

message The text message to share.

Returns a String indicating the result of the sharing operation.

Implementation

Future<String> shareToTelegram(String message) {
  return EasySocialSharePlatform.instance.shareToTelegram(message);
}