ComposerCommonButton constructor

const ComposerCommonButton({
  1. Key? key,
  2. required dynamic onTap()?,
  3. required Widget child,
  4. Color? backgroundColor,
  5. Color? foregroundColor,
  6. required String tooltipMessage,
})

Implementation

const ComposerCommonButton({
  super.key,
  required this.onTap,
  required this.child,
  this.backgroundColor,
  this.foregroundColor,
  required this.tooltipMessage,
});