getInitialText static method

Future<String?> getInitialText()

Returns a Future, which completes to one of the following:

  • the initially stored link (possibly null), on successful invocation;
  • a PlatformException, if the invocation failed in the platform plugin.

Implementation

static Future<String?> getInitialText() async {
  return await _mChannel.invokeMethod('getInitialText');
}