buildImages method
Implementation
Widget buildImages() {
return ModernFormViewImages(
imagesMemory: images,
onDelete: (index) {
List<Uint8List> _i = List<Uint8List>.from(images!);
_i.removeAt(index);
onChanged!(_i);
},
);
}