pickImageFromCamera method

Future<void> pickImageFromCamera()

Opens the camera app and adds the captured image to the attachments.

Implementation

Future<void> pickImageFromCamera() async {
  field.focus.unfocus();

  // TODO: Remove the limitations when bigger files are supported on backend.
  final XFile? photo = await ImagePicker().pickImage(
    source: ImageSource.camera,
    maxWidth: 1920,
    maxHeight: 1920,
    imageQuality: 90,
  );

  if (photo != null) {
    _addXFileAttachment(photo);
  }
}