LaunchActionButton constructor

const LaunchActionButton({
  1. Key? key,
  2. required String label,
  3. required Uri uri,
  4. IconData? icon,
  5. LaunchStyle? style,
  6. VoidCallback? onTap,
  7. dynamic onResult(
    1. bool
    )?,
  8. List<String>? allowedSchemes,
})

Creates a LaunchActionButton.

Implementation

const LaunchActionButton({
  super.key,
  required this.label,
  required this.uri,
  this.icon,
  this.style,
  this.onTap,
  this.onResult,
  this.allowedSchemes,
});