is there any way to get a value in a json object?

You can use the forEach or another looping method to get data from a list.

  List outPut = [];
  List data = response['data'];
  data.forEach((element) {
    outPut.add(element['notelp']);
  });
  print(outPut);

CLICK HERE to find out more related problems solutions.

Leave a Comment

Your email address will not be published.

Scroll to Top