LaunchActionButton constructor
const
LaunchActionButton({
- Key? key,
- required String label,
- required Uri uri,
- required LaunchType type,
- LaunchIcon? icon,
- LaunchStyle? style,
- VoidCallback? onTap,
- dynamic onResult()?,
- List<
String> ? allowedSchemes, - LaunchOptions? options,
- CalendarEvent? calendarEvent,
- String? value,
- Map<
String, dynamic> ? queryParameters,
Creates a LaunchActionButton.
Implementation
const LaunchActionButton({
super.key,
required this.label,
required this.uri,
required this.type,
this.icon,
this.style,
this.onTap,
this.onResult,
this.allowedSchemes,
this.options,
this.calendarEvent,
this.value,
this.queryParameters, // Add this line
});