ChatToolsView constructor

const ChatToolsView({
  1. Key? key,
  2. List<ToolsItem>? items,
  3. ToolsLayoutParams? layoutParams,
  4. dynamic onTapAlbum()?,
  5. dynamic onTapCamera()?,
  6. dynamic onTapVideoCall()?,
  7. dynamic onTapLocation()?,
  8. dynamic onTapFile()?,
  9. dynamic onTapCarte()?,
  10. dynamic onStartVoiceInput()?,
  11. dynamic onStopVoiceInput()?,
  12. Widget? albumIcon,
  13. Widget? cameraIcon,
  14. Widget? videoCallIcon,
  15. Widget? locationIcon,
  16. Widget? fileIcon,
  17. Widget? carteIcon,
  18. Widget? voiceInputIcon,
  19. EdgeInsetsGeometry? margin,
  20. double? verticalSpacing,
})

Implementation

const ChatToolsView({
  Key? key,
  this.items,
  this.layoutParams,
  this.onTapAlbum,
  this.onTapCamera,
  this.onTapVideoCall,
  this.onTapLocation,
  this.onTapFile,
  this.onTapCarte,
  this.onStartVoiceInput,
  this.onStopVoiceInput,
  this.albumIcon,
  this.cameraIcon,
  this.videoCallIcon,
  this.locationIcon,
  this.fileIcon,
  this.carteIcon,
  this.voiceInputIcon,
  this.margin,
  this.verticalSpacing,
}) : super(key: key);