ShareButtonOptions constructor

ShareButtonOptions(
  1. {required VoidCallback action,
  2. IconData? icon,
  3. bool show = true,
  4. Color? backgroundColor = Colors.blue,
  5. Color? iconColor = Colors.white}
)

Implementation

ShareButtonOptions({
  required this.action,
  this.icon,
  this.show = true,
  this.backgroundColor = Colors.blue,
  this.iconColor = Colors.white,
});