shareText function

Future<void> shareText(
  1. String text
)

分享纯文本到支付宝。

Implementation

Future<void> shareText(String text) async {
  await _channel.invokeMethod("shareText", {
    "text": text,
  });
}