getUserWikiDiscussionPage static method

String getUserWikiDiscussionPage(
  1. String userId
)

Link to add a discussion topic on the OpenFoodFacts wiki page of a user.

Implementation

static String getUserWikiDiscussionPage(final String userId) => Uri(
  scheme: 'https',
  host: 'wiki.openfoodfacts.org',
  path: 'index.php',
  queryParameters: {
    'title': 'User_talk:${getUserWikiTag(userId)}',
    'action': 'edit',
    'section': 'new',
  },
).toString();