followUser method
Implementation
Future<TUIActionCallback> followUser(String userId) async {
final result = await friendshipManager.followUser(userIDList: [userId]);
const success = 0;
return result.code == success
? TUIActionCallback(code: TUIError.success, message: '')
: TUIActionCallback(code: TUIError.errFailed, message: result.desc);
}