ImageBox constructor

const ImageBox(
  1. {Key? key,
  2. required String imagePath,
  3. required ValueChanged<String> onDelete}
)

Implementation

const ImageBox({
  Key? key,
  required this.imagePath,
  required this.onDelete,
}) : super(key: key);