KitImagePickerView constructor

const KitImagePickerView({
  1. Key? key,
  2. String? actionBarTitle = '',
  3. bool? containTitle,
  4. double? marginHorizontal = 0,
  5. double? marginVertical = 5,
  6. String title = "",
  7. int? maxImages = 1,
  8. String? allViewTitle = 'Todas as imagens',
  9. bool enableCamera = true,
  10. bool? convertImage = false,
  11. List? listConverted,
  12. String? actionBarColor = '#035ac9',
  13. Widget? iconSufix = const Icon(Icons.camera_alt, color: Colors.white),
  14. BoxDecoration? boxDecorationButton,
  15. double? height = 100,
  16. double? width = 300,
  17. String? titleButton = '',
})

Implementation

const KitImagePickerView({
  super.key,
  this.actionBarTitle = '',
  this.containTitle,
  this.marginHorizontal = 0,
  this.marginVertical = 5,
  this.title = "",
  this.maxImages = 1,
  this.allViewTitle = 'Todas as imagens',
  this.enableCamera = true,
  this.convertImage = false,
  this.listConverted,
  this.actionBarColor = '#035ac9',
  this.iconSufix = const Icon(
    Icons.camera_alt,
    color: Colors.white,
  ),
  this.boxDecorationButton,
  this.height = 100,
  this.width = 300,
  this.titleButton = '',
});