buildContactUsSection method

Widget buildContactUsSection(
  1. String email
)

Implementation

Widget buildContactUsSection(String email) {
  return FastArticle(
    titleText: 'Contact Us',
    children: [
      FastParagraph(
        child: FastSettingsSupportLink(
          emailText: email,
          prefixText: 'If you have any questions or suggestions about our '
              'Privacy Policy, do not hesitate to contact us',
        ),
      ),
    ],
  );
}