'Flutter webscrapping How to access a table elements

enter image description hereI am writing a web scrapping widget in my flutter app to extract the meanings of a Sanskrit word. I wish to know how to access the text yellow highlighted in the attached image.

dictionary page screenshot This is my code.

var document = parser.parse(response.body);
var element = document.
querySelectorAll("div.gridcontainer")[0];
var data = element.querySelectorAll('tr');
var responseString1 = 
document.getElementsByClassName('gridcontainer')[0]
.children[2];


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source