swapTokenForExactTokens method 
    
    
    
  Implementation
  Future<String> swapTokenForExactTokens({
  required BigInt amountOut,
  required BigInt amountInMax,
  required List<String> path,
  required String to,
  required BigInt deadline,
  required Uint8List privateKey,
  required String sender,
}) async {
  final function = abi.getFunction("swapTokensForExactTokens")!;
  final result = await interact(
    privateKey: privateKey,
    sender: sender,
    function: function.addValues(values: [amountOut, amountInMax, path, to, deadline]),
  );
  return result;
}