buildServiceProvidersSection method

Widget buildServiceProvidersSection()

Implementation

Widget buildServiceProvidersSection() {
  return const FastArticle(
    titleText: 'Service Providers',
    children: [
      FastParagraph(
        text: 'We may employ third-party companies and individuals due '
            'to the following reasons:',
      ),
      kFastSizedBox8,
      FastBody(text: '• To facilitate our Service;'),
      FastBody(text: '• To provide the Service on our behalf;'),
      FastBody(text: '• To perform Service-related services; or'),
      FastBody(
        text: '• To assist us in analyzing how our Service is used.',
      ),
      kFastSizedBox8,
      FastParagraph(
        text: 'We want to inform users of this Service that these third '
            'parties have access to your Personal Information. The '
            'reason is to perform the tasks assigned to them on our '
            'behalf. However, they are obligated not to disclose or use '
            'the information for any other purpose.',
      ),
    ],
  );
}