getDeepLinkInfo method

Future<Result<HelpDeepLinkInfoBase>> getDeepLinkInfo({
  1. required String path,
})

Get Deep Link Info.

ID: 3fedc75f.

Implementation

Future<Result<HelpDeepLinkInfoBase>> getDeepLinkInfo({
  required String path,
}) async {
  // Preparing the request.
  final request = HelpGetDeepLinkInfo(
    path: path,
  );

  // Invoke and wait for response.
  final response = await _c.invoke(request);

  // Return the result.
  return response._to<HelpDeepLinkInfoBase>();
}