Call a function inside Wrap contain list of elements in flutter
I want to call a function inside Wrap content. My requirement is to call this function before the wrap content is loaded. void checkFund(){} Wrap( children: entList .map((element) => Padding( padding: const EdgeInsets.only(left: 4.0, bottom: 5), child: element['isAcq'] ? Acquisition('${element['ele']}')…