getEntryPageList function

Future getEntryPageList({
  1. dynamic chinese = false,
})

Implementation

Future getEntryPageList({chinese = false}) {
  const url =
      'https://sg-wiki-api.hoyolab.com/hoyowiki/wapi/get_entry_page_list';
  const kwargs = {
    'method': 'POST',
  };
  return fetchEndpoint(url, chinese: chinese, kwargs: kwargs);
}