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