showImagePicker method

void showImagePicker(
  1. BuildContext context
)

Implementation

void showImagePicker(BuildContext context) {
  if (widget.editType == ImageEditType.painterNoGallery ||
      widget.editType == ImageEditType.editorNoGallery) {
    _pickImageUsingCamera();
  } else {
    _showImagePickerSourceActionSheet(context);
  }
}