how to use debugPrint for image.network?

79 Views Asked by At

I want to see the link of the image in the terminal using debugPrint. kindly help me. This is my code:

           FutureBuilder<Iterable<SubCategories>>(
                builder: (context, snapshot) {
                    return ListView.builder(
                      itemBuilder: (context, index) =>
                          Image.network(
                            snapshot.data!.elementAt(index).logo,
                          ),
                    );
                }),
2

There are 2 best solutions below

3
On BEST ANSWER

Try out this:

**Note:** import log as **dart.developer** (import 'dart:developer';)





     FutureBuilder<Iterable<SubCategories>>(
                    builder: (context, snapshot) {                  
                        return ListView.builder(
                          itemBuilder: (context, index) {
                        log("Network image--->${snapshot.data!.elementAt(index).logo}");
                            return Image.network(
                                snapshot.data!.elementAt(index).logo,
                              ),
                          }
                        );
                    }),
0
On

debugPrint only takes String as argument. you can do something like this. debugPrint('${snapshot.data!.elementAt(index).logo}');