buildAppIntroductionSection method

Widget buildAppIntroductionSection(
  1. String appAuthor,
  2. String appName
)

Implementation

Widget buildAppIntroductionSection(String appAuthor, String appName) {
  return FastParagraph(
    text: '$appAuthor built the $appName app as a Freemium app. This '
        'Service is provided by $appAuthor at no cost and is intended '
        'for use as is.',
  );
}