If the image_picker library return the exist file path, how to directly change it?
void getImage(ImageSource imageSource) async {
  final pickedFile = await ImagePicker().pickImage(source: imageSource);
  if (pickedFile != null) {
    pickedFile.path; // how to rename?
  }
}