PayPalButton constructor
const
PayPalButton({
- Key? key,
- String donationText = "Donate with Paypal",
- required String paypalButtonId,
- Color? color,
- VoidCallback? onDonation,
- ButtonStyle? style,
- Future<
bool> onLaunchURL(- String urlString
Implementation
const PayPalButton(
{Key? key,
this.donationText = "Donate with Paypal",
required this.paypalButtonId,
this.color,
this.onDonation,
this.style,
this.onLaunchURL})
: super(key: key);