getLinkContent method

  1. @override
Future<String?> getLinkContent(
  1. Link link
)
override

Retrieves the content of a given link in the current Publication as a string.

Implementation

@override
Future<String?> getLinkContent(final Link link) => methodChannel
    .invokeMethod<String>('getLinkContent', [jsonEncode(link.toJson())]);