buildChangesToTermsArticle method

Widget buildChangesToTermsArticle(
  1. String appName
)

Implementation

Widget buildChangesToTermsArticle(String appName) {
  return FastArticle(
    titleText: 'Changes to these Terms',
    children: [
      const FastParagraph(
        text: 'We reserve the right to modify these Terms at any time. '
            'For instance, we may need to change these Terms if we come '
            'out with a new feature or for some other reason.',
      ),
      buildChangesToTermsParagraph(appName),
      const FastParagraph(
        text: 'If you continue to use the Service after the revised '
            'Terms go into effect, then you have accepted the changes to '
            'these Terms.',
      ),
    ],
  );
}