CheckoutPageFooter constructor

const CheckoutPageFooter({
  1. Key? key,
  2. required String termsLink,
  3. required String privacyLink,
  4. String? note,
  5. String? noteLink,
})

The CheckoutPageFooter is a pre-constructed footer that only requires url links to the desired publicly accessible terms of service page and terms of service page. There is alos the ability to add a foot note that can be also be linked to a publicly accessible webpage.

Implementation

const CheckoutPageFooter(
    {Key? key,
    required this.termsLink,
    required this.privacyLink,
    this.note,
    this.noteLink})
    : super(key: key);