getBusinessChatLinks method

Future<Result<AccountBusinessChatLinksBase>> getBusinessChatLinks()

Get Business Chat Links.

ID: 6f70dde1.

Implementation

Future<Result<AccountBusinessChatLinksBase>> getBusinessChatLinks() async {
  // Preparing the request.
  final request = AccountGetBusinessChatLinks();

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

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