LaunchLink constructor

const LaunchLink({
  1. Key? key,
  2. LaunchDisplayMode mode = LaunchDisplayMode.actionButton,
  3. required LaunchType type,
  4. String? label,
  5. String? visibleText,
  6. String? value,
  7. IconData? icon,
  8. LaunchStyle? style,
  9. String? emailSubject,
  10. String? emailBody,
  11. String? smsBody,
  12. VoidCallback? onTap,
  13. dynamic onResult(
    1. bool
    )?,
  14. List<String>? allowedSchemes,
  15. MainAxisAlignment? alignment,
})

Creates a unified LaunchLink widget.

Implementation

const LaunchLink({
  super.key,
  this.mode = LaunchDisplayMode.actionButton,
  required this.type,
  this.label,
  this.visibleText,
  this.value,
  this.icon,
  this.style,
  this.emailSubject,
  this.emailBody,
  this.smsBody,
  this.onTap,
  this.onResult,
  this.allowedSchemes,
  this.alignment,
});