ModernShareButtonOptions constructor

ModernShareButtonOptions({
  1. required VoidCallback action,
  2. IconData? icon,
  3. bool show = true,
  4. Color? backgroundColor,
  5. Color? iconColor,
  6. String? tooltip,
})

Implementation

ModernShareButtonOptions({
  required this.action,
  this.icon,
  this.show = true,
  this.backgroundColor,
  this.iconColor,
  this.tooltip,
});