shareToTiktokPost method

Future<String> shareToTiktokPost(
  1. String videoFile,
  2. String redirectUrl,
  3. TiktokFileType tiktokFileType
)

Works only after implementing native code provided here https://pub.dev/packages/appinio_social_share

Implementation

Future<String> shareToTiktokPost(
    String videoFile, String redirectUrl, TiktokFileType tiktokFileType) {
  return AppinioSocialSharePlatform.instance
      .shareToTiktokPost(videoFile, redirectUrl, tiktokFileType);
}