appendEffectNodes method
@hidden for internal use only @detail api @author zhushufan.ref @brief Appends video effects material package. @param effectNodes Array of effect material package paths. @return - 0: Success. - –1000: The Effects SDK is not integrated. - –1001: This API is unavailable for your Effects SDK. - –1002: Your Effects SDK's version is incompatible. - < 0: Other error. See error code table for specific instructions. @note This API adds new video effect to the video effect you set with setEffectNodes{@link #IVideoEffect#setEffectNodes}.
Implementation
FutureOr<int> appendEffectNodes(List<String> effectNodes) async {
return await nativeCall('appendEffectNodes', [effectNodes]);
}