PatreonButton constructor
const
PatreonButton({
- Key? key,
- String text = "Support me on Patreon",
- required String patreonName,
- VoidCallback? onDonation,
- ButtonStyle? style,
- Future<
bool> onLaunchURL(- String urlString
Implementation
const PatreonButton(
{Key? key,
this.text = "Support me on Patreon",
required this.patreonName,
this.onDonation,
this.style,
this.onLaunchURL})
: super(key: key);