PatreonButton constructor

const PatreonButton({
  1. Key? key,
  2. String text = "Support me on Patreon",
  3. required String patreonName,
  4. VoidCallback? onDonation,
  5. ButtonStyle? style,
  6. Future<bool> onLaunchURL(
    1. 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);