SinglePhotoUploadWidget constructor

const SinglePhotoUploadWidget({
  1. Key? key,
  2. required String photoType,
  3. required dynamic onPhotoUploaded(
    1. String photoType,
    2. String photoUrl,
    3. List<int> imageBytes
    ),
})

Implementation

const SinglePhotoUploadWidget({
  super.key,
  required this.photoType,
  required this.onPhotoUploaded,
});