findBestPathFromAmountIn method
findBestPathFromAmountIn retrives the best path of a given token pair
Implementation
Future<(List, List, List, List, List, List)> findBestPathFromAmountIn(
TokenName token1, TokenName token2, BigInt amountIn) {
return _findBestPath(token1, token2, amountIn, true);
}