I want to get an image path from selected multiple images, I\'m using this link to select multiple images but I got assets, I want paths from selected multiple images becaus
Padding( padding: const EdgeInsets.all(18.0), child: InkWell( child: Text( 'POST', style: TextStyle(fontSize: 18.0), ), onTap: () async { List multipart = List(); for (int i = 0; i < images.length; i++) { var path = await FlutterAbsolutePath.getAbsolutePath(images[i].identifier); } }, ), )