Customizer constructor
Customizer({
- String cameraSource = 'Camera',
- String gallerySource = 'Gallery',
- String replyPlaceholder = 'Message...',
- String slideToSee = 'Slide to see...',
- String seconds = 's',
- String minutes = 'm',
- String hours = 'h',
- String days = 'd',
- String weeks = 'w',
- IconData closeIcon = Icons.close,
- IconData infoIcon = Icons.more_horiz,
- IconData failedImageIcon = Icons.broken_image,
- IconData sendIcon = Icons.send,
- IconData gallerySourceIcon = Icons.image,
- 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,
});