Customizer constructor

Customizer({
  1. String cameraSource = 'Camera',
  2. String gallerySource = 'Gallery',
  3. String replyPlaceholder = 'Message...',
  4. String slideToSee = 'Slide to see...',
  5. String seconds = 's',
  6. String minutes = 'm',
  7. String hours = 'h',
  8. String days = 'd',
  9. String weeks = 'w',
  10. IconData closeIcon = Icons.close,
  11. IconData infoIcon = Icons.more_horiz,
  12. IconData failedImageIcon = Icons.broken_image,
  13. IconData sendIcon = Icons.send,
  14. IconData gallerySourceIcon = Icons.image,
  15. IconData cameraSourceIcon = Icons.camera_alt,
})

Implementation

Customizer({
  this.cameraSource = 'Camera',
  this.gallerySource = 'Gallery',
  this.replyPlaceholder = 'Message...',
  this.slideToSee = 'Slide to see...',
  this.seconds = 's',
  this.minutes = 'm',
  this.hours = 'h',
  this.days = 'd',
  this.weeks = 'w',
  this.closeIcon = Icons.close,
  this.infoIcon = Icons.more_horiz,
  this.failedImageIcon = Icons.broken_image,
  this.sendIcon = Icons.send,
  this.gallerySourceIcon = Icons.image,
  this.cameraSourceIcon = Icons.camera_alt,
});