CameraLanguage constructor

const CameraLanguage({
  1. String contentLoadCamera = 'Camera is initializing',
  2. TextStyle? styleLoadCamera,
  3. String noPhotoOnGallery = 'There are no photos in the gallery',
  4. TextStyle? styleNoPhotoOnGallery,
  5. String confirmChoice = 'Confirm selection of this photo?',
  6. TextStyle? styleConfirmChoice,
  7. String confirm = 'Agree',
  8. String cancel = 'Cancel',
  9. String scanQR = 'Insert the QR code into the frame',
  10. String choiceImageFromGallery = 'Select the photo',
  11. String noQrInImage = 'No QR code seen in the photo',
  12. String toMuchQr = 'There are too many QR codes in the screen',
  13. String noLibraryAccess = 'No library access',
  14. String citizenInFrame = 'Include citizen identification card in the frame',
})

Implementation

const CameraLanguage({
  this.contentLoadCamera = 'Camera is initializing',
  this.styleLoadCamera,
  this.noPhotoOnGallery = 'There are no photos in the gallery',
  this.styleNoPhotoOnGallery,
  this.confirmChoice = 'Confirm selection of this photo?',
  this.styleConfirmChoice,
  this.confirm = 'Agree',
  this.cancel = 'Cancel',
  this.scanQR = 'Insert the QR code into the frame',
  this.choiceImageFromGallery = 'Select the photo',
  this.noQrInImage = 'No QR code seen in the photo',
  this.toMuchQr = 'There are too many QR codes in the screen',
  this.noLibraryAccess = 'No library access',
  this.citizenInFrame = 'Include citizen identification card in the frame',
});